Unicode Finder

"雧" U+96E7(CJK UNIFIED IDEOGRAPH-96E7)

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

Programming

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

Web

CSS
\0096E7
HtmlDecimal
雧
HtmlHexadecimal
雧
Url
%E9%9B%A7

Code

MD5
a93cffba3fb2618de8b6fc603c224914
Sha1
a2ec6aedb46aecb89d18ba3a866aceca9c561427
Base64
6Zun

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u96E7';
console.log(char);  // Output: 雧

Java:

char c = '\u96E7';
System.out.println(c);  // Output: 雧

JSON:

{"text": "\u96E7"}  // Value: 雧

Python:

char = '\u96E7'
print(char)  # Output: 雧

Perl:

my $char = "\x{96E7}";
print $char;  # Output: 雧

PHP:

$char = "\x{96E7}";
echo $char;  // Output: 雧

Ruby:

char = "\u{96E7}"
puts char  # Output: 雧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38631;</p>  <!-- Display: 雧 -->

HTML Hexadecimal:

<p>HTML hex: &#x96E7;</p>  <!-- Display: 雧 -->

URL Encoding:

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

Encodings

MD5:

a93cffba3fb2618de8b6fc603c224914

SHA1:

a2ec6aedb46aecb89d18ba3a866aceca9c561427

Base64:

6Zun