Unicode Finder

"骫" U+9AAB(CJK UNIFIED IDEOGRAPH-9AAB)

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

Programming

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

Web

CSS
\009AAB
HtmlDecimal
骫
HtmlHexadecimal
骫
Url
%E9%AA%AB

Code

MD5
cebacda068632152d930fe9dbd4659ae
Sha1
845c6b442cdf23cb8d9a505c51ac7c5aefee11d2
Base64
6aqr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AAB';
console.log(char);  // Output: 骫

Java:

char c = '\u9AAB';
System.out.println(c);  // Output: 骫

JSON:

{"text": "\u9AAB"}  // Value: 骫

Python:

char = '\u9AAB'
print(char)  # Output: 骫

Perl:

my $char = "\x{9AAB}";
print $char;  # Output: 骫

PHP:

$char = "\x{9AAB}";
echo $char;  // Output: 骫

Ruby:

char = "\u{9AAB}"
puts char  # Output: 骫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39595;</p>  <!-- Display: 骫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AAB;</p>  <!-- Display: 骫 -->

URL Encoding:

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

Encodings

MD5:

cebacda068632152d930fe9dbd4659ae

SHA1:

845c6b442cdf23cb8d9a505c51ac7c5aefee11d2

Base64:

6aqr