Unicode Finder

"ᦼ" U+19BC(NEW TAI LUE VOWEL SIGN UY)

U+19BC
Nama Blok
New Tai Lue
Nama
NEW TAI LUE VOWEL SIGN UY

Programming

C
\u19BC
JavaScript
\u19BC
Java
\u19BC
Json
\u19BC
Python
\u19BC
Perl
\x{19BC}
PHP
\x{19BC}
Ruby
\u{19BC}
Rust
\u{19BC}
Go
\u19BC

Web

CSS
\0019BC
HtmlDecimal
ᦼ
HtmlHexadecimal
ᦼ
Url
%E1%A6%BC

Code

MD5
198570ccb5facc6526e589e6935ec6bd
Sha1
edccaff35391f674a9f8e0af4ce34331cff954fb
Base64
4aa8

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u19BC';
console.log(char);  // Output: ᦼ

Java:

char c = '\u19BC';
System.out.println(c);  // Output: ᦼ

JSON:

{"text": "\u19BC"}  // Value: ᦼ

Python:

char = '\u19BC'
print(char)  # Output: ᦼ

Perl:

my $char = "\x{19BC}";
print $char;  # Output: ᦼ

PHP:

$char = "\x{19BC}";
echo $char;  // Output: ᦼ

Ruby:

char = "\u{19BC}"
puts char  # Output: ᦼ

Rust:

let c = '\u{19BC}';
println!("{}", c);  // Output: ᦼ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0019BC";  /* Display: ᦼ */
}

HTML Decimal:

<p>HTML decimal: &#6588;</p>  <!-- Display: ᦼ -->

HTML Hexadecimal:

<p>HTML hex: &#x19BC;</p>  <!-- Display: ᦼ -->

URL Encoding:

// ᦼ URL encoding
https://unicodefinder.com/search.php?query=%E1%A6%BC

Encodings

MD5:

198570ccb5facc6526e589e6935ec6bd

SHA1:

edccaff35391f674a9f8e0af4ce34331cff954fb

Base64:

4aa8