Unicode Finder

"ᦛ" U+199B(NEW TAI LUE LETTER HIGH VA)

U+199B
Nama Blok
New Tai Lue
Nama
NEW TAI LUE LETTER HIGH VA

Programming

C
\u199B
JavaScript
\u199B
Java
\u199B
Json
\u199B
Python
\u199B
Perl
\x{199B}
PHP
\x{199B}
Ruby
\u{199B}
Rust
\u{199B}
Go
\u199B

Web

CSS
\00199B
HtmlDecimal
ᦛ
HtmlHexadecimal
ᦛ
Url
%E1%A6%9B

Code

MD5
d65e83b97e411945b72305b131e560d6
Sha1
825c9e514a1e11cec07dd3e245f2820f12512403
Base64
4aab

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u199B';
console.log(char);  // Output: ᦛ

Java:

char c = '\u199B';
System.out.println(c);  // Output: ᦛ

JSON:

{"text": "\u199B"}  // Value: ᦛ

Python:

char = '\u199B'
print(char)  # Output: ᦛ

Perl:

my $char = "\x{199B}";
print $char;  # Output: ᦛ

PHP:

$char = "\x{199B}";
echo $char;  // Output: ᦛ

Ruby:

char = "\u{199B}"
puts char  # Output: ᦛ

Rust:

let c = '\u{199B}';
println!("{}", c);  // Output: ᦛ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00199B";  /* Display: ᦛ */
}

HTML Decimal:

<p>HTML decimal: &#6555;</p>  <!-- Display: ᦛ -->

HTML Hexadecimal:

<p>HTML hex: &#x199B;</p>  <!-- Display: ᦛ -->

URL Encoding:

// ᦛ URL encoding
https://unicodefinder.com/search.php?query=%E1%A6%9B

Encodings

MD5:

d65e83b97e411945b72305b131e560d6

SHA1:

825c9e514a1e11cec07dd3e245f2820f12512403

Base64:

4aab