Unicode Finder

"鸪" U+9E2A(CJK UNIFIED IDEOGRAPH-9E2A)

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

Programming

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

Web

CSS
\009E2A
HtmlDecimal
鸪
HtmlHexadecimal
鸪
Url
%E9%B8%AA

Code

MD5
2c287a429281dc468c57e11d160b7238
Sha1
32c6569fad80a7c353352976aae1d181424ee857
Base64
6biq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9E2A';
console.log(char);  // Output: 鸪

Java:

char c = '\u9E2A';
System.out.println(c);  // Output: 鸪

JSON:

{"text": "\u9E2A"}  // Value: 鸪

Python:

char = '\u9E2A'
print(char)  # Output: 鸪

Perl:

my $char = "\x{9E2A}";
print $char;  # Output: 鸪

PHP:

$char = "\x{9E2A}";
echo $char;  // Output: 鸪

Ruby:

char = "\u{9E2A}"
puts char  # Output: 鸪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40490;</p>  <!-- Display: 鸪 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E2A;</p>  <!-- Display: 鸪 -->

URL Encoding:

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

Encodings

MD5:

2c287a429281dc468c57e11d160b7238

SHA1:

32c6569fad80a7c353352976aae1d181424ee857

Base64:

6biq