Unicode Finder

"骒" U+9A92(CJK UNIFIED IDEOGRAPH-9A92)

U+9A92
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9A92

Programming

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

Web

CSS
\009A92
HtmlDecimal
骒
HtmlHexadecimal
骒
Url
%E9%AA%92

Code

MD5
0ad86776f8af6d58843923e18eb8998a
Sha1
da8aabee658d72f97ceb84c05977dec4ccf20ba1
Base64
6aqS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9A92';
console.log(char);  // Output: 骒

Java:

char c = '\u9A92';
System.out.println(c);  // Output: 骒

JSON:

{"text": "\u9A92"}  // Value: 骒

Python:

char = '\u9A92'
print(char)  # Output: 骒

Perl:

my $char = "\x{9A92}";
print $char;  # Output: 骒

PHP:

$char = "\x{9A92}";
echo $char;  // Output: 骒

Ruby:

char = "\u{9A92}"
puts char  # Output: 骒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39570;</p>  <!-- Display: 骒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A92;</p>  <!-- Display: 骒 -->

URL Encoding:

// 骒 URL encoding
https://unicodefinder.com/search.php?query=%E9%AA%92

Encodings

MD5:

0ad86776f8af6d58843923e18eb8998a

SHA1:

da8aabee658d72f97ceb84c05977dec4ccf20ba1

Base64:

6aqS