Unicode Finder

"雉" U+96C9(CJK UNIFIED IDEOGRAPH-96C9)

U+96C9
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-96C9

Programming

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

Web

CSS
\0096C9
HtmlDecimal
雉
HtmlHexadecimal
雉
Url
%E9%9B%89

Code

MD5
f659221893fe68c02554b1de2741db37
Sha1
25fde0e7f45f867ad5d1792eafdf33689b7f175d
Base64
6ZuJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u96C9';
console.log(char);  // Output: 雉

Java:

char c = '\u96C9';
System.out.println(c);  // Output: 雉

JSON:

{"text": "\u96C9"}  // Value: 雉

Python:

char = '\u96C9'
print(char)  # Output: 雉

Perl:

my $char = "\x{96C9}";
print $char;  # Output: 雉

PHP:

$char = "\x{96C9}";
echo $char;  // Output: 雉

Ruby:

char = "\u{96C9}"
puts char  # Output: 雉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38601;</p>  <!-- Display: 雉 -->

HTML Hexadecimal:

<p>HTML hex: &#x96C9;</p>  <!-- Display: 雉 -->

URL Encoding:

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

Encodings

MD5:

f659221893fe68c02554b1de2741db37

SHA1:

25fde0e7f45f867ad5d1792eafdf33689b7f175d

Base64:

6ZuJ