Unicode Finder

"ꗫ" U+A5EB(VAI SYLLABLE MBE)

U+A5EB
ブロック名
Vai
名前
VAI SYLLABLE MBE

Programming

C
\uA5EB
JavaScript
\uA5EB
Java
\uA5EB
Json
\uA5EB
Python
\uA5EB
Perl
\x{A5EB}
PHP
\x{A5EB}
Ruby
\u{A5EB}
Rust
\u{A5EB}
Go
\uA5EB

Web

CSS
\00A5EB
HtmlDecimal
ꗫ
HtmlHexadecimal
ꗫ
Url
%EA%97%AB

Code

MD5
a26a617dcf6f8f8f8afb96306d0985a4
Sha1
9582ebc4ab7e16775ba49cf71cbe2352e6a3d27d
Base64
6per

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5EB';
console.log(char);  // Output: ꗫ

Java:

char c = '\uA5EB';
System.out.println(c);  // Output: ꗫ

JSON:

{"text": "\uA5EB"}  // Value: ꗫ

Python:

char = '\uA5EB'
print(char)  # Output: ꗫ

Perl:

my $char = "\x{A5EB}";
print $char;  # Output: ꗫ

PHP:

$char = "\x{A5EB}";
echo $char;  // Output: ꗫ

Ruby:

char = "\u{A5EB}"
puts char  # Output: ꗫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42475;</p>  <!-- Display: ꗫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5EB;</p>  <!-- Display: ꗫ -->

URL Encoding:

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

Encodings

MD5:

a26a617dcf6f8f8f8afb96306d0985a4

SHA1:

9582ebc4ab7e16775ba49cf71cbe2352e6a3d27d

Base64:

6per