Unicode Finder

"ꪳ" U+AAB3(TAI VIET VOWEL UE)

U+AAB3
ブロック名
Tai Viet
名前
TAI VIET VOWEL UE

Programming

C
\uAAB3
JavaScript
\uAAB3
Java
\uAAB3
Json
\uAAB3
Python
\uAAB3
Perl
\x{AAB3}
PHP
\x{AAB3}
Ruby
\u{AAB3}
Rust
\u{AAB3}
Go
\uAAB3

Web

CSS
\00AAB3
HtmlDecimal
ꪳ
HtmlHexadecimal
ꪳ
Url
%EA%AA%B3

Code

MD5
6a6906dc3e5d90db2657d05235f1e98e
Sha1
db29ea83abf4a996b2f5ac7721b74fe0411c2495
Base64
6qqz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAAB3';
console.log(char);  // Output: ꪳ

Java:

char c = '\uAAB3';
System.out.println(c);  // Output: ꪳ

JSON:

{"text": "\uAAB3"}  // Value: ꪳ

Python:

char = '\uAAB3'
print(char)  # Output: ꪳ

Perl:

my $char = "\x{AAB3}";
print $char;  # Output: ꪳ

PHP:

$char = "\x{AAB3}";
echo $char;  // Output: ꪳ

Ruby:

char = "\u{AAB3}"
puts char  # Output: ꪳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43699;</p>  <!-- Display: ꪳ -->

HTML Hexadecimal:

<p>HTML hex: &#xAAB3;</p>  <!-- Display: ꪳ -->

URL Encoding:

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

Encodings

MD5:

6a6906dc3e5d90db2657d05235f1e98e

SHA1:

db29ea83abf4a996b2f5ac7721b74fe0411c2495

Base64:

6qqz