Unicode Finder

"騮" U+9A2E(CJK UNIFIED IDEOGRAPH-9A2E)

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

Programming

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

Web

CSS
\009A2E
HtmlDecimal
騮
HtmlHexadecimal
騮
Url
%E9%A8%AE

Code

MD5
f47bef905173ef7c0a25dcb02b775851
Sha1
064ea310f78b7e9b57004ff41c35bf182df61420
Base64
6aiu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9A2E';
console.log(char);  // Output: 騮

Java:

char c = '\u9A2E';
System.out.println(c);  // Output: 騮

JSON:

{"text": "\u9A2E"}  // Value: 騮

Python:

char = '\u9A2E'
print(char)  # Output: 騮

Perl:

my $char = "\x{9A2E}";
print $char;  # Output: 騮

PHP:

$char = "\x{9A2E}";
echo $char;  // Output: 騮

Ruby:

char = "\u{9A2E}"
puts char  # Output: 騮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39470;</p>  <!-- Display: 騮 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A2E;</p>  <!-- Display: 騮 -->

URL Encoding:

// 騮 URL encoding
https://unicodefinder.com/search.php?query=%E9%A8%AE

Encodings

MD5:

f47bef905173ef7c0a25dcb02b775851

SHA1:

064ea310f78b7e9b57004ff41c35bf182df61420

Base64:

6aiu