Unicode Finder

"鴪" U+9D2A(CJK UNIFIED IDEOGRAPH-9D2A)

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

Programming

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

Web

CSS
\009D2A
HtmlDecimal
鴪
HtmlHexadecimal
鴪
Url
%E9%B4%AA

Code

MD5
f5643a1575fb767972bd340815ce77fd
Sha1
7e717e8b69614ccfbeb6c25f5fd54215b7c59c9a
Base64
6bSq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D2A';
console.log(char);  // Output: 鴪

Java:

char c = '\u9D2A';
System.out.println(c);  // Output: 鴪

JSON:

{"text": "\u9D2A"}  // Value: 鴪

Python:

char = '\u9D2A'
print(char)  # Output: 鴪

Perl:

my $char = "\x{9D2A}";
print $char;  # Output: 鴪

PHP:

$char = "\x{9D2A}";
echo $char;  // Output: 鴪

Ruby:

char = "\u{9D2A}"
puts char  # Output: 鴪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40234;</p>  <!-- Display: 鴪 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D2A;</p>  <!-- Display: 鴪 -->

URL Encoding:

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

Encodings

MD5:

f5643a1575fb767972bd340815ce77fd

SHA1:

7e717e8b69614ccfbeb6c25f5fd54215b7c59c9a

Base64:

6bSq