Unicode Finder

"ꖹ" U+A5B9(VAI SYLLABLE NYU)

U+A5B9
ブロック名
Vai
名前
VAI SYLLABLE NYU

Programming

C
\uA5B9
JavaScript
\uA5B9
Java
\uA5B9
Json
\uA5B9
Python
\uA5B9
Perl
\x{A5B9}
PHP
\x{A5B9}
Ruby
\u{A5B9}
Rust
\u{A5B9}
Go
\uA5B9

Web

CSS
\00A5B9
HtmlDecimal
ꖹ
HtmlHexadecimal
ꖹ
Url
%EA%96%B9

Code

MD5
97bef95085cc41f4baf2cbffad3300a7
Sha1
40fd9583b07df425a4a8af4e071337160693bbe7
Base64
6pa5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA5B9';
console.log(char);  // Output: ꖹ

Java:

char c = '\uA5B9';
System.out.println(c);  // Output: ꖹ

JSON:

{"text": "\uA5B9"}  // Value: ꖹ

Python:

char = '\uA5B9'
print(char)  # Output: ꖹ

Perl:

my $char = "\x{A5B9}";
print $char;  # Output: ꖹ

PHP:

$char = "\x{A5B9}";
echo $char;  // Output: ꖹ

Ruby:

char = "\u{A5B9}"
puts char  # Output: ꖹ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42425;</p>  <!-- Display: ꖹ -->

HTML Hexadecimal:

<p>HTML hex: &#xA5B9;</p>  <!-- Display: ꖹ -->

URL Encoding:

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

Encodings

MD5:

97bef95085cc41f4baf2cbffad3300a7

SHA1:

40fd9583b07df425a4a8af4e071337160693bbe7

Base64:

6pa5