Unicode Finder

"ꗢ" U+A5E2(VAI SYLLABLE EN)

U+A5E2
ブロック名
Vai
名前
VAI SYLLABLE EN

Programming

C
\uA5E2
JavaScript
\uA5E2
Java
\uA5E2
Json
\uA5E2
Python
\uA5E2
Perl
\x{A5E2}
PHP
\x{A5E2}
Ruby
\u{A5E2}
Rust
\u{A5E2}
Go
\uA5E2

Web

CSS
\00A5E2
HtmlDecimal
ꗢ
HtmlHexadecimal
ꗢ
Url
%EA%97%A2

Code

MD5
427eb8ee46e5b66e948beb9c47d4a0fe
Sha1
dab52c7df275b3219daeb5d1e7f1d7faacfbd63e
Base64
6pei

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5E2';
console.log(char);  // Output: ꗢ

Java:

char c = '\uA5E2';
System.out.println(c);  // Output: ꗢ

JSON:

{"text": "\uA5E2"}  // Value: ꗢ

Python:

char = '\uA5E2'
print(char)  # Output: ꗢ

Perl:

my $char = "\x{A5E2}";
print $char;  # Output: ꗢ

PHP:

$char = "\x{A5E2}";
echo $char;  // Output: ꗢ

Ruby:

char = "\u{A5E2}"
puts char  # Output: ꗢ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42466;</p>  <!-- Display: ꗢ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5E2;</p>  <!-- Display: ꗢ -->

URL Encoding:

// ꗢ URL encoding
https://unicodefinder.com/search.php?query=%EA%97%A2

Encodings

MD5:

427eb8ee46e5b66e948beb9c47d4a0fe

SHA1:

dab52c7df275b3219daeb5d1e7f1d7faacfbd63e

Base64:

6pei