Unicode Finder

"雌" U+96CC(CJK UNIFIED IDEOGRAPH-96CC)

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

Programming

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

Web

CSS
\0096CC
HtmlDecimal
雌
HtmlHexadecimal
雌
Url
%E9%9B%8C

Code

MD5
3efed04779508a76f6814edd1b95edaf
Sha1
46ff4063e3955394c753120aaf1346cef4e53549
Base64
6ZuM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u96CC';
console.log(char);  // Output: 雌

Java:

char c = '\u96CC';
System.out.println(c);  // Output: 雌

JSON:

{"text": "\u96CC"}  // Value: 雌

Python:

char = '\u96CC'
print(char)  # Output: 雌

Perl:

my $char = "\x{96CC}";
print $char;  # Output: 雌

PHP:

$char = "\x{96CC}";
echo $char;  // Output: 雌

Ruby:

char = "\u{96CC}"
puts char  # Output: 雌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38604;</p>  <!-- Display: 雌 -->

HTML Hexadecimal:

<p>HTML hex: &#x96CC;</p>  <!-- Display: 雌 -->

URL Encoding:

// 雌 URL encoding
https://unicodefinder.com/search.php?query=%E9%9B%8C

Encodings

MD5:

3efed04779508a76f6814edd1b95edaf

SHA1:

46ff4063e3955394c753120aaf1346cef4e53549

Base64:

6ZuM