Unicode Finder

"騋" U+9A0B(CJK UNIFIED IDEOGRAPH-9A0B)

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

Programming

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

Web

CSS
\009A0B
HtmlDecimal
騋
HtmlHexadecimal
騋
Url
%E9%A8%8B

Code

MD5
684f6bd2f2e8a89f443624be06e69be6
Sha1
78c569dd85c89067b4c3f841d8a125d28047e32f
Base64
6aiL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9A0B';
console.log(char);  // Output: 騋

Java:

char c = '\u9A0B';
System.out.println(c);  // Output: 騋

JSON:

{"text": "\u9A0B"}  // Value: 騋

Python:

char = '\u9A0B'
print(char)  # Output: 騋

Perl:

my $char = "\x{9A0B}";
print $char;  # Output: 騋

PHP:

$char = "\x{9A0B}";
echo $char;  // Output: 騋

Ruby:

char = "\u{9A0B}"
puts char  # Output: 騋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39435;</p>  <!-- Display: 騋 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A0B;</p>  <!-- Display: 騋 -->

URL Encoding:

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

Encodings

MD5:

684f6bd2f2e8a89f443624be06e69be6

SHA1:

78c569dd85c89067b4c3f841d8a125d28047e32f

Base64:

6aiL