Unicode Finder

"鶏" U+9D8F(CJK UNIFIED IDEOGRAPH-9D8F)

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

Programming

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

Web

CSS
\009D8F
HtmlDecimal
鶏
HtmlHexadecimal
鶏
Url
%E9%B6%8F

Code

MD5
bb6565ed10970555e25bae9dd2d24c96
Sha1
0604876a6817ac1020a2556e729505403a316114
Base64
6baP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D8F';
console.log(char);  // Output: 鶏

Java:

char c = '\u9D8F';
System.out.println(c);  // Output: 鶏

JSON:

{"text": "\u9D8F"}  // Value: 鶏

Python:

char = '\u9D8F'
print(char)  # Output: 鶏

Perl:

my $char = "\x{9D8F}";
print $char;  # Output: 鶏

PHP:

$char = "\x{9D8F}";
echo $char;  // Output: 鶏

Ruby:

char = "\u{9D8F}"
puts char  # Output: 鶏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40335;</p>  <!-- Display: 鶏 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D8F;</p>  <!-- Display: 鶏 -->

URL Encoding:

// 鶏 URL encoding
https://unicodefinder.com/search.php?query=%E9%B6%8F

Encodings

MD5:

bb6565ed10970555e25bae9dd2d24c96

SHA1:

0604876a6817ac1020a2556e729505403a316114

Base64:

6baP