Unicode Finder

"閗" U+9597(CJK UNIFIED IDEOGRAPH-9597)

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

Programming

C
\u9597
JavaScript
\u9597
Java
\u9597
Json
\u9597
Python
\u9597
Perl
\x{9597}
PHP
\x{9597}
Ruby
\u{9597}
Rust
\u{9597}
Go
\u9597

Web

CSS
\009597
HtmlDecimal
閗
HtmlHexadecimal
閗
Url
%E9%96%97

Code

MD5
e8e651c69a91f6326c06dd0a1f183709
Sha1
fc14f7b46d09538b5ab5a56ee552bd129f3011ef
Base64
6ZaX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9597';
console.log(char);  // Output: 閗

Java:

char c = '\u9597';
System.out.println(c);  // Output: 閗

JSON:

{"text": "\u9597"}  // Value: 閗

Python:

char = '\u9597'
print(char)  # Output: 閗

Perl:

my $char = "\x{9597}";
print $char;  # Output: 閗

PHP:

$char = "\x{9597}";
echo $char;  // Output: 閗

Ruby:

char = "\u{9597}"
puts char  # Output: 閗

Rust:

let c = '\u{9597}';
println!("{}", c);  // Output: 閗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009597";  /* Display: 閗 */
}

HTML Decimal:

<p>HTML decimal: &#38295;</p>  <!-- Display: 閗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9597;</p>  <!-- Display: 閗 -->

URL Encoding:

// 閗 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%97

Encodings

MD5:

e8e651c69a91f6326c06dd0a1f183709

SHA1:

fc14f7b46d09538b5ab5a56ee552bd129f3011ef

Base64:

6ZaX