Unicode Finder

"ꖰ" U+A5B0(VAI SYLLABLE CU)

U+A5B0
ブロック名
Vai
名前
VAI SYLLABLE CU

Programming

C
\uA5B0
JavaScript
\uA5B0
Java
\uA5B0
Json
\uA5B0
Python
\uA5B0
Perl
\x{A5B0}
PHP
\x{A5B0}
Ruby
\u{A5B0}
Rust
\u{A5B0}
Go
\uA5B0

Web

CSS
\00A5B0
HtmlDecimal
ꖰ
HtmlHexadecimal
ꖰ
Url
%EA%96%B0

Code

MD5
8752839a2079e9d08701d4e5922c5735
Sha1
989491ef225d6442b2b4fc2427733802c7482037
Base64
6paw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5B0';
console.log(char);  // Output: ꖰ

Java:

char c = '\uA5B0';
System.out.println(c);  // Output: ꖰ

JSON:

{"text": "\uA5B0"}  // Value: ꖰ

Python:

char = '\uA5B0'
print(char)  # Output: ꖰ

Perl:

my $char = "\x{A5B0}";
print $char;  # Output: ꖰ

PHP:

$char = "\x{A5B0}";
echo $char;  // Output: ꖰ

Ruby:

char = "\u{A5B0}"
puts char  # Output: ꖰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42416;</p>  <!-- Display: ꖰ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5B0;</p>  <!-- Display: ꖰ -->

URL Encoding:

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

Encodings

MD5:

8752839a2079e9d08701d4e5922c5735

SHA1:

989491ef225d6442b2b4fc2427733802c7482037

Base64:

6paw