Unicode Finder

"ᩫ" U+1A6B(TAI THAM VOWEL SIGN O)

U+1A6B
Nume Bloc
Tai Tham
Nume
TAI THAM VOWEL SIGN O

Programming

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

Web

CSS
\001A6B
HtmlDecimal
ᩫ
HtmlHexadecimal
ᩫ
Url
%E1%A9%AB

Code

MD5
6b07a6a56764e3a1a66433e843e7735d
Sha1
295c1af8e44ee02588c4c29f6de40fb40086d94c
Base64
4amr

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1A6B';
console.log(char);  // Output: ᩫ

Java:

char c = '\u1A6B';
System.out.println(c);  // Output: ᩫ

JSON:

{"text": "\u1A6B"}  // Value: ᩫ

Python:

char = '\u1A6B'
print(char)  # Output: ᩫ

Perl:

my $char = "\x{1A6B}";
print $char;  # Output: ᩫ

PHP:

$char = "\x{1A6B}";
echo $char;  // Output: ᩫ

Ruby:

char = "\u{1A6B}"
puts char  # Output: ᩫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6763;</p>  <!-- Display: ᩫ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A6B;</p>  <!-- Display: ᩫ -->

URL Encoding:

// ᩫ URL encoding
https://unicodefinder.com/search.php?query=%E1%A9%AB

Encodings

MD5:

6b07a6a56764e3a1a66433e843e7735d

SHA1:

295c1af8e44ee02588c4c29f6de40fb40086d94c

Base64:

4amr