Unicode Finder

"ᦻ" U+19BB(NEW TAI LUE VOWEL SIGN AAY)

U+19BB
ブロック名
New Tai Lue
名前
NEW TAI LUE VOWEL SIGN AAY

Programming

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

Web

CSS
\0019BB
HtmlDecimal
ᦻ
HtmlHexadecimal
ᦻ
Url
%E1%A6%BB

Code

MD5
cf49405b795aa6cbd744be80f513e6b4
Sha1
2cb73301614b00964d4fefa96e4f42a818854b8a
Base64
4aa7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u19BB';
console.log(char);  // Output: ᦻ

Java:

char c = '\u19BB';
System.out.println(c);  // Output: ᦻ

JSON:

{"text": "\u19BB"}  // Value: ᦻ

Python:

char = '\u19BB'
print(char)  # Output: ᦻ

Perl:

my $char = "\x{19BB}";
print $char;  # Output: ᦻ

PHP:

$char = "\x{19BB}";
echo $char;  // Output: ᦻ

Ruby:

char = "\u{19BB}"
puts char  # Output: ᦻ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6587;</p>  <!-- Display: ᦻ -->

HTML Hexadecimal:

<p>HTML hex: &#x19BB;</p>  <!-- Display: ᦻ -->

URL Encoding:

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

Encodings

MD5:

cf49405b795aa6cbd744be80f513e6b4

SHA1:

2cb73301614b00964d4fefa96e4f42a818854b8a

Base64:

4aa7