Unicode Finder

"꘨" U+A628(VAI DIGIT EIGHT)

U+A628
ブロック名
Vai
名前
VAI DIGIT EIGHT

Programming

C
\uA628
JavaScript
\uA628
Java
\uA628
Json
\uA628
Python
\uA628
Perl
\x{A628}
PHP
\x{A628}
Ruby
\u{A628}
Rust
\u{A628}
Go
\uA628

Web

CSS
\00A628
HtmlDecimal
꘨
HtmlHexadecimal
꘨
Url
%EA%98%A8

Code

MD5
18110d8cad96594d8f7d1baf502c55b1
Sha1
fdf3c680048281dfcc26394ed22ddd07ced4328d
Base64
6pio

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA628';
console.log(char);  // Output: ꘨

Java:

char c = '\uA628';
System.out.println(c);  // Output: ꘨

JSON:

{"text": "\uA628"}  // Value: ꘨

Python:

char = '\uA628'
print(char)  # Output: ꘨

Perl:

my $char = "\x{A628}";
print $char;  # Output: ꘨

PHP:

$char = "\x{A628}";
echo $char;  // Output: ꘨

Ruby:

char = "\u{A628}"
puts char  # Output: ꘨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42536;</p>  <!-- Display: ꘨ -->

HTML Hexadecimal:

<p>HTML hex: &#xA628;</p>  <!-- Display: ꘨ -->

URL Encoding:

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

Encodings

MD5:

18110d8cad96594d8f7d1baf502c55b1

SHA1:

fdf3c680048281dfcc26394ed22ddd07ced4328d

Base64:

6pio