Unicode Finder

"ꪻ" U+AABB(TAI VIET VOWEL AUE)

U+AABB
ブロック名
Tai Viet
名前
TAI VIET VOWEL AUE

Programming

C
\uAABB
JavaScript
\uAABB
Java
\uAABB
Json
\uAABB
Python
\uAABB
Perl
\x{AABB}
PHP
\x{AABB}
Ruby
\u{AABB}
Rust
\u{AABB}
Go
\uAABB

Web

CSS
\00AABB
HtmlDecimal
ꪻ
HtmlHexadecimal
ꪻ
Url
%EA%AA%BB

Code

MD5
67dd0c59c6fdad9b67dea3693874fc82
Sha1
2973b4d64170c0de0e4699ff73a6dbdfecdc0471
Base64
6qq7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAABB';
console.log(char);  // Output: ꪻ

Java:

char c = '\uAABB';
System.out.println(c);  // Output: ꪻ

JSON:

{"text": "\uAABB"}  // Value: ꪻ

Python:

char = '\uAABB'
print(char)  # Output: ꪻ

Perl:

my $char = "\x{AABB}";
print $char;  # Output: ꪻ

PHP:

$char = "\x{AABB}";
echo $char;  // Output: ꪻ

Ruby:

char = "\u{AABB}"
puts char  # Output: ꪻ

Rust:

let c = '\u{AABB}';
println!("{}", c);  // Output: ꪻ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00AABB";  /* Display: ꪻ */
}

HTML Decimal:

<p>HTML decimal: &#43707;</p>  <!-- Display: ꪻ -->

HTML Hexadecimal:

<p>HTML hex: &#xAABB;</p>  <!-- Display: ꪻ -->

URL Encoding:

// ꪻ URL encoding
https://unicodefinder.com/search.php?query=%EA%AA%BB

Encodings

MD5:

67dd0c59c6fdad9b67dea3693874fc82

SHA1:

2973b4d64170c0de0e4699ff73a6dbdfecdc0471

Base64:

6qq7