Unicode Finder

"騫" U+9A2B(CJK UNIFIED IDEOGRAPH-9A2B)

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

Programming

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

Web

CSS
\009A2B
HtmlDecimal
騫
HtmlHexadecimal
騫
Url
%E9%A8%AB

Code

MD5
ccb325a5c3d2a6db350e878991efdfe2
Sha1
912d6e53d49fecc5e6b5f4e423d6787374f95aa1
Base64
6air

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9A2B';
console.log(char);  // Output: 騫

Java:

char c = '\u9A2B';
System.out.println(c);  // Output: 騫

JSON:

{"text": "\u9A2B"}  // Value: 騫

Python:

char = '\u9A2B'
print(char)  # Output: 騫

Perl:

my $char = "\x{9A2B}";
print $char;  # Output: 騫

PHP:

$char = "\x{9A2B}";
echo $char;  // Output: 騫

Ruby:

char = "\u{9A2B}"
puts char  # Output: 騫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39467;</p>  <!-- Display: 騫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A2B;</p>  <!-- Display: 騫 -->

URL Encoding:

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

Encodings

MD5:

ccb325a5c3d2a6db350e878991efdfe2

SHA1:

912d6e53d49fecc5e6b5f4e423d6787374f95aa1

Base64:

6air