Unicode Finder

"鶯" U+9DAF(CJK UNIFIED IDEOGRAPH-9DAF)

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

Programming

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

Web

CSS
\009DAF
HtmlDecimal
鶯
HtmlHexadecimal
鶯
Url
%E9%B6%AF

Code

MD5
fd9f985b30f75f7438e190e23d2fe07c
Sha1
a27f8c111adf5b25c957e968f6659c789f57e9eb
Base64
6bav

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DAF';
console.log(char);  // Output: 鶯

Java:

char c = '\u9DAF';
System.out.println(c);  // Output: 鶯

JSON:

{"text": "\u9DAF"}  // Value: 鶯

Python:

char = '\u9DAF'
print(char)  # Output: 鶯

Perl:

my $char = "\x{9DAF}";
print $char;  # Output: 鶯

PHP:

$char = "\x{9DAF}";
echo $char;  // Output: 鶯

Ruby:

char = "\u{9DAF}"
puts char  # Output: 鶯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40367;</p>  <!-- Display: 鶯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DAF;</p>  <!-- Display: 鶯 -->

URL Encoding:

// 鶯 URL encoding
https://unicodefinder.com/search.php?query=%E9%B6%AF

Encodings

MD5:

fd9f985b30f75f7438e190e23d2fe07c

SHA1:

a27f8c111adf5b25c957e968f6659c789f57e9eb

Base64:

6bav