Unicode Finder

"雞" U+96DE(CJK UNIFIED IDEOGRAPH-96DE)

U+96DE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-96DE

Programming

C
\u96DE
JavaScript
\u96DE
Java
\u96DE
Json
\u96DE
Python
\u96DE
Perl
\x{96DE}
PHP
\x{96DE}
Ruby
\u{96DE}
Rust
\u{96DE}
Go
\u96DE

Web

CSS
\0096DE
HtmlDecimal
雞
HtmlHexadecimal
雞
Url
%E9%9B%9E

Code

MD5
3a1c36d2b34e54f562517d1c10f84ef0
Sha1
7dcf9fb9bab3d15999a6a55e037549438dd6ba09
Base64
6Zue

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u96DE';
console.log(char);  // Output: 雞

Java:

char c = '\u96DE';
System.out.println(c);  // Output: 雞

JSON:

{"text": "\u96DE"}  // Value: 雞

Python:

char = '\u96DE'
print(char)  # Output: 雞

Perl:

my $char = "\x{96DE}";
print $char;  # Output: 雞

PHP:

$char = "\x{96DE}";
echo $char;  // Output: 雞

Ruby:

char = "\u{96DE}"
puts char  # Output: 雞

Rust:

let c = '\u{96DE}';
println!("{}", c);  // Output: 雞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0096DE";  /* Display: 雞 */
}

HTML Decimal:

<p>HTML decimal: &#38622;</p>  <!-- Display: 雞 -->

HTML Hexadecimal:

<p>HTML hex: &#x96DE;</p>  <!-- Display: 雞 -->

URL Encoding:

// 雞 URL encoding
https://unicodefinder.com/search.php?query=%E9%9B%9E

Encodings

MD5:

3a1c36d2b34e54f562517d1c10f84ef0

SHA1:

7dcf9fb9bab3d15999a6a55e037549438dd6ba09

Base64:

6Zue