4LaR4La24LeU4LeD4LeaIOC2kuC2ouC2seC3iuC2p+C3iuC3g+C3iuC2veC3jyDgtpHgtrHgt4rgtrEg

anushkapubudu

Well-known member
  • Dec 6, 2022
    565
    458
    63
    4La94LeT4Laa4LeKIOC2muC2u+C2veC3jyDgtq3gt5Lgtrrgt5ngtrHgt4rgtrHgt5og4LaF4La7IOC3hOC3meC2qeC3iiDgtrTgt4rigI3gtrvgt5Lgt4bgt5ngtprgt4rgtqfgt4og4Laa4LeP4La74La64Lac4LeaIOC2uuC3j+C2veC3lOC3gOC3meC2muC3iiDgtr3gt5Qg4Lax4LeaPyDgtovgtpzgt5og4LaF4La44LeK4La44LePIOC2keC2muC3iuC2muC2reC3iiDgtrjgt5Yg4LeA4LeT4Lap4LeS4La64LedIOC2muC3neC2veC3iiDgtoXgtrvgtrHgt4og4Laa4LeS4La64Lax4LeK4Lax4LeaLi4gIA==
     
    • Like
    Reactions: todd2231048

    topkollek

    Well-known member
  • May 22, 2014
    44,014
    1
    58,331
    113
    ┬┴┬┴┤(·_├┬┴┬┴
    200.gif
     

    todd2231048

    Well-known member
  • Apr 28, 2008
    12,783
    17,006
    113

    4La94LeT4Laa4LeKIOC2muC2u+C2veC3jyDgtq3gt5Lgtrrgt5ngtrHgt4rgtrHgt5og4LaF4La7IOC3hOC3meC2qeC3iiDgtrTgt4rigI3gtrvgt5Lgt4bgt5ngtprgt4rgtqfgt4og4Laa4LeP4La74La64Lac4LeaIOC2uuC3j+C2veC3lOC3gOC3meC2muC3iiDgtr3gt5Qg4Lax4LeaPyDgtovgtpzgt5og4LaF4La44LeK4La44LePIOC2keC2muC3iuC2muC2reC3iiDgtrjgt5Yg4LeA4LeT4Lap4LeS4La64LedIOC2muC3neC2veC3iiDgtoXgtrvgtrHgt4og4Laa4LeS4La64Lax4LeK4Lax4LeaLi4gIA==
    4LaR4LeA4LeK4LeAIOC2seC2giDgtprgt5Dgtrvgt5Ig4LeA4LeQ4LapIA==
    ------ Post added on Jan 29, 2026 at 8:38 PM

    4La24LeU4Lav4LeK4Lav4LeS4Lax4LeSIOC2uOC3kuC3g+C3iiDgt4Dgt5Pgtqngt5Lgtrrgt50g4Laa4Led4La94LeKIOC2keC2muC2muC3iiDgtpzgtq3gt4rgtq3gt5zgtq3gt4og4LaL4La24La94LePIOC2uOC2veC3iuC2veC3kuC3gCDgtrTgt5ngtrHgt4rgtrHgtrHgt4Dgtq8g
    4LaR4Laa4LeZ4Lax4LeK4La4IGJybyAK4La44Lec4Laa4Laa4LeK4LavIOC2muC3kuC3gOC3iuC3
    gOC3nOC2reC3iiDgtrjgtrjgtq3gt4og4Lax4LeP4La94Lax4LeK4oGj4Lav4LeP4LeA4Lea
    ------ Post added on Jan 29, 2026 at 8:41 PM
     

    todd2231048

    Well-known member
  • Apr 28, 2008
    12,783
    17,006
    113
    4LeE4La94LedIOC2uOC2nOC3miDgtrvgtq3gt4rgtq3gtrvgtoIg4La64LeP4LeF4LeU4LeA4Lax4LeaIOC2muC3nOKBo+C3hOC3nOC2uOC2ryDgtpTgtrrgt4/gtr3gtqc/IA==
     

    Bumbzy

    Well-known member
  • Jul 20, 2015
    1,781
    1,955
    113
    Galle
    මේක උඩ ඉඳන් පල්ලෙහට යනකොට දැනුනේ ගව පට්ටියක් මැදින් යනවා වගේ... 4LaL4La44LeK4La24LeRIOC2i+C2uOC3iuC2tuC3kQ== ගානවා විතරයි තේරෙන්නේ.... උන කතා කරන එක උන්ට විතරයිනෙ තේරෙන්නේ...මන් මේ එකෙක්ගේ දෙකෙක්ගේ තං බුරුළු ඇද්දා බලමු කීදෙනෙක් 4LaL4La44LeK4La24LeRIOC2i+C2uOC3iuC2tuC3kQ== ගාවිද කියලා
     

    Raskolnikov

    Active member
  • Oct 29, 2019
    182
    164
    43
    JavaScript:
    // ==UserScript==
    // @name         Base64 Selection Decoder
    // @author       ChatGPT
    // @namespace    https://elakiri.com/
    // @version      1.0
    // @description  Decode Base64 text when you select it
    // @match        https://elakiri.com/*
    // @grant        none
    // ==/UserScript==
    
    (function () {
        'use strict';
    
        let popup;
    
        function decodeBase64(str) {
            try {
                // Remove whitespace that may have been introduced by wrapping.
                str = str.replace(/\s+/g, '');
    
                // Basic Base64 sanity check.
                if (str.length < 4 || !/^[A-Za-z0-9+/_-]+={0,2}$/.test(str))
                    return null;
    
                // Support URL-safe Base64 too.
                str = str.replace(/-/g, '+').replace(/_/g, '/');
    
                // Restore missing padding.
                while (str.length % 4)
                    str += '=';
    
                const binary = atob(str);
    
                // Correctly decode UTF-8 text, including Sinhala etc.
                const bytes = Uint8Array.from(binary, c => c.charCodeAt(0));
                return new TextDecoder('utf-8', { fatal: true }).decode(bytes);
            } catch {
                return null;
            }
        }
    
        function removePopup() {
            if (popup) {
                popup.remove();
                popup = null;
            }
        }
    
        document.addEventListener('mousedown', removePopup);
    
        document.addEventListener('mouseup', () => {
            setTimeout(() => {
                const selection = window.getSelection();
                const selected = selection.toString().trim();
    
                if (!selected)
                    return;
    
                const decoded = decodeBase64(selected);
    
                if (decoded === null || decoded === selected)
                    return;
    
                const range = selection.getRangeAt(0);
                const rect = range.getBoundingClientRect();
    
                popup = document.createElement('div');
                popup.textContent = decoded;
    
                Object.assign(popup.style, {
                    position: 'absolute',
                    left: `${window.scrollX + rect.left}px`,
                    top: `${window.scrollY + rect.bottom + 6}px`,
                    maxWidth: '600px',
                    padding: '8px 12px',
                    background: '#15202b',
                    color: '#fff',
                    border: '1px solid #536471',
                    borderRadius: '8px',
                    fontFamily: 'sans-serif',
                    fontSize: '14px',
                    lineHeight: '1.4',
                    whiteSpace: 'pre-wrap',
                    overflowWrap: 'anywhere',
                    zIndex: '2147483647',
                    boxShadow: '0 4px 12px rgba(0,0,0,.35)',
                    cursor: 'pointer'
                });
    
                popup.title = 'Click to copy decoded text';
    
                popup.addEventListener('mousedown', e => {
                    e.stopPropagation();
                });
    
                popup.addEventListener('click', async () => {
                    await navigator.clipboard.writeText(decoded);
                    popup.textContent = 'Copied';
                    setTimeout(removePopup, 600);
                });
    
                document.body.appendChild(popup);
            }, 0);
        });
    })();

    මේකෙ තේරුම මොකක්ද?
    𓎡𓂋𓇋𓄿𓊪𓄿𓏏𓄿 𓃀𓄿𓃭 𓊪𓄿𓈖𓄿𓊪𓇋
    𓊃𓊪𓇋𓎛𓄿 𓂧𓇋𓇌𓄿 𓎡𓄿𓈖𓄿 𓈖𓄿
    KRIAPATA BAL PANAPI
    SPIHA DIYA KANA NA

    https://capitalizemytitle.com/hieroglyphics-translator/

    කිරි අප්පට බල්ලො පැනපි
    ????? දිය කියන නා??
     
    Last edited: