Unicode Finder

"鍖" U+9356(CJK UNIFIED IDEOGRAPH-9356)

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

Programming

C
\u9356
JavaScript
\u9356
Java
\u9356
Json
\u9356
Python
\u9356
Perl
\x{9356}
PHP
\x{9356}
Ruby
\u{9356}
Rust
\u{9356}
Go
\u9356

Web

CSS
\009356
HtmlDecimal
鍖
HtmlHexadecimal
鍖
Url
%E9%8D%96

Code

MD5
cfb67c4e1d9e825dc7c04aa62cd63517
Sha1
3ac1b9e88abcba499df63bdeee8e587332fd9dec
Base64
6Y2W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9356';
console.log(char);  // Output: 鍖

Java:

char c = '\u9356';
System.out.println(c);  // Output: 鍖

JSON:

{"text": "\u9356"}  // Value: 鍖

Python:

char = '\u9356'
print(char)  # Output: 鍖

Perl:

my $char = "\x{9356}";
print $char;  # Output: 鍖

PHP:

$char = "\x{9356}";
echo $char;  // Output: 鍖

Ruby:

char = "\u{9356}"
puts char  # Output: 鍖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009356";  /* Display: 鍖 */
}

HTML Decimal:

<p>HTML decimal: &#37718;</p>  <!-- Display: 鍖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9356;</p>  <!-- Display: 鍖 -->

URL Encoding:

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

Encodings

MD5:

cfb67c4e1d9e825dc7c04aa62cd63517

SHA1:

3ac1b9e88abcba499df63bdeee8e587332fd9dec

Base64:

6Y2W