Unicode Finder

"ꖻ" U+A5BB(VAI SYLLABLE ON)

U+A5BB
ブロック名
Vai
名前
VAI SYLLABLE ON

Programming

C
\uA5BB
JavaScript
\uA5BB
Java
\uA5BB
Json
\uA5BB
Python
\uA5BB
Perl
\x{A5BB}
PHP
\x{A5BB}
Ruby
\u{A5BB}
Rust
\u{A5BB}
Go
\uA5BB

Web

CSS
\00A5BB
HtmlDecimal
ꖻ
HtmlHexadecimal
ꖻ
Url
%EA%96%BB

Code

MD5
b977fb98672a24280c07d927cb0f67a2
Sha1
7761cbb84a80c5d47e58a9c5a1ef4fa04d5605c0
Base64
6pa7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5BB';
console.log(char);  // Output: ꖻ

Java:

char c = '\uA5BB';
System.out.println(c);  // Output: ꖻ

JSON:

{"text": "\uA5BB"}  // Value: ꖻ

Python:

char = '\uA5BB'
print(char)  # Output: ꖻ

Perl:

my $char = "\x{A5BB}";
print $char;  # Output: ꖻ

PHP:

$char = "\x{A5BB}";
echo $char;  // Output: ꖻ

Ruby:

char = "\u{A5BB}"
puts char  # Output: ꖻ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42427;</p>  <!-- Display: ꖻ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5BB;</p>  <!-- Display: ꖻ -->

URL Encoding:

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

Encodings

MD5:

b977fb98672a24280c07d927cb0f67a2

SHA1:

7761cbb84a80c5d47e58a9c5a1ef4fa04d5605c0

Base64:

6pa7