Unicode Finder

"鍲" U+9372(CJK UNIFIED IDEOGRAPH-9372)

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

Programming

C
\u9372
JavaScript
\u9372
Java
\u9372
Json
\u9372
Python
\u9372
Perl
\x{9372}
PHP
\x{9372}
Ruby
\u{9372}
Rust
\u{9372}
Go
\u9372

Web

CSS
\009372
HtmlDecimal
鍲
HtmlHexadecimal
鍲
Url
%E9%8D%B2

Code

MD5
6c96831f664cc8920e5ed13861baf50e
Sha1
87d69f52f9fbdd2bf45fb0eb4f1de0a26e1d550f
Base64
6Y2y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9372';
console.log(char);  // Output: 鍲

Java:

char c = '\u9372';
System.out.println(c);  // Output: 鍲

JSON:

{"text": "\u9372"}  // Value: 鍲

Python:

char = '\u9372'
print(char)  # Output: 鍲

Perl:

my $char = "\x{9372}";
print $char;  # Output: 鍲

PHP:

$char = "\x{9372}";
echo $char;  // Output: 鍲

Ruby:

char = "\u{9372}"
puts char  # Output: 鍲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009372";  /* Display: 鍲 */
}

HTML Decimal:

<p>HTML decimal: &#37746;</p>  <!-- Display: 鍲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9372;</p>  <!-- Display: 鍲 -->

URL Encoding:

// 鍲 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%B2

Encodings

MD5:

6c96831f664cc8920e5ed13861baf50e

SHA1:

87d69f52f9fbdd2bf45fb0eb4f1de0a26e1d550f

Base64:

6Y2y