Unicode Finder

"ᬣ" U+1B23(BALINESE LETTER TA TAWA)

U+1B23
Nama Blok
Balinese
Nama
BALINESE LETTER TA TAWA

Programming

C
\u1B23
JavaScript
\u1B23
Java
\u1B23
Json
\u1B23
Python
\u1B23
Perl
\x{1B23}
PHP
\x{1B23}
Ruby
\u{1B23}
Rust
\u{1B23}
Go
\u1B23

Web

CSS
\001B23
HtmlDecimal
ᬣ
HtmlHexadecimal
ᬣ
Url
%E1%AC%A3

Code

MD5
9ff3d706936a5631e67339c8d61a9467
Sha1
86ba3aefaf4eaf932ef92e1ac4c934824b3d0a23
Base64
4ayj

Contoh Penggunaan

Programming Languages

C:

char c = '\u1B23';
printf("%c\n", c);  // Output: ᬣ

JavaScript:

const char = '\u1B23';
console.log(char);  // Output: ᬣ

Java:

char c = '\u1B23';
System.out.println(c);  // Output: ᬣ

JSON:

{"text": "\u1B23"}  // Value: ᬣ

Python:

char = '\u1B23'
print(char)  # Output: ᬣ

Perl:

my $char = "\x{1B23}";
print $char;  # Output: ᬣ

PHP:

$char = "\x{1B23}";
echo $char;  // Output: ᬣ

Ruby:

char = "\u{1B23}"
puts char  # Output: ᬣ

Rust:

let c = '\u{1B23}';
println!("{}", c);  // Output: ᬣ

Go:

char := '\u1B23'
fmt.Printf("%c\n", char)  // Output: ᬣ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001B23";  /* Display: ᬣ */
}

HTML Decimal:

<p>HTML decimal: &#6947;</p>  <!-- Display: ᬣ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B23;</p>  <!-- Display: ᬣ -->

URL Encoding:

// ᬣ URL encoding
https://unicodefinder.com/search.php?query=%E1%AC%A3

Encodings

MD5:

9ff3d706936a5631e67339c8d61a9467

SHA1:

86ba3aefaf4eaf932ef92e1ac4c934824b3d0a23

Base64:

4ayj