Unicode Finder

"ꗨ" U+A5E8(VAI SYLLABLE PE)

U+A5E8
ブロック名
Vai
名前
VAI SYLLABLE PE

Programming

C
\uA5E8
JavaScript
\uA5E8
Java
\uA5E8
Json
\uA5E8
Python
\uA5E8
Perl
\x{A5E8}
PHP
\x{A5E8}
Ruby
\u{A5E8}
Rust
\u{A5E8}
Go
\uA5E8

Web

CSS
\00A5E8
HtmlDecimal
ꗨ
HtmlHexadecimal
ꗨ
Url
%EA%97%A8

Code

MD5
3dce1b2b63332fdd3c5075470d4413d5
Sha1
048004730db3524e3b0eb13e6970f58a57d22e41
Base64
6peo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5E8';
console.log(char);  // Output: ꗨ

Java:

char c = '\uA5E8';
System.out.println(c);  // Output: ꗨ

JSON:

{"text": "\uA5E8"}  // Value: ꗨ

Python:

char = '\uA5E8'
print(char)  # Output: ꗨ

Perl:

my $char = "\x{A5E8}";
print $char;  # Output: ꗨ

PHP:

$char = "\x{A5E8}";
echo $char;  // Output: ꗨ

Ruby:

char = "\u{A5E8}"
puts char  # Output: ꗨ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42472;</p>  <!-- Display: ꗨ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5E8;</p>  <!-- Display: ꗨ -->

URL Encoding:

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

Encodings

MD5:

3dce1b2b63332fdd3c5075470d4413d5

SHA1:

048004730db3524e3b0eb13e6970f58a57d22e41

Base64:

6peo