Unicode Finder

"騊" U+9A0A(CJK UNIFIED IDEOGRAPH-9A0A)

U+9A0A
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9A0A

Programming

C
\u9A0A
JavaScript
\u9A0A
Java
\u9A0A
Json
\u9A0A
Python
\u9A0A
Perl
\x{9A0A}
PHP
\x{9A0A}
Ruby
\u{9A0A}
Rust
\u{9A0A}
Go
\u9A0A

Web

CSS
\009A0A
HtmlDecimal
騊
HtmlHexadecimal
騊
Url
%E9%A8%8A

Code

MD5
713de52e9bd44af9ba31b17ac49cac51
Sha1
86232ab7607fffcd5893d4c09c0670c64d72f1e2
Base64
6aiK

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9A0A';
console.log(char);  // Output: 騊

Java:

char c = '\u9A0A';
System.out.println(c);  // Output: 騊

JSON:

{"text": "\u9A0A"}  // Value: 騊

Python:

char = '\u9A0A'
print(char)  # Output: 騊

Perl:

my $char = "\x{9A0A}";
print $char;  # Output: 騊

PHP:

$char = "\x{9A0A}";
echo $char;  // Output: 騊

Ruby:

char = "\u{9A0A}"
puts char  # Output: 騊

Rust:

let c = '\u{9A0A}';
println!("{}", c);  // Output: 騊

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009A0A";  /* Display: 騊 */
}

HTML Decimal:

<p>HTML decimal: &#39434;</p>  <!-- Display: 騊 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A0A;</p>  <!-- Display: 騊 -->

URL Encoding:

// 騊 URL encoding
https://unicodefinder.com/search.php?query=%E9%A8%8A

Encodings

MD5:

713de52e9bd44af9ba31b17ac49cac51

SHA1:

86232ab7607fffcd5893d4c09c0670c64d72f1e2

Base64:

6aiK