Unicode Finder

"鍤" U+9364(CJK UNIFIED IDEOGRAPH-9364)

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

Programming

C
\u9364
JavaScript
\u9364
Java
\u9364
Json
\u9364
Python
\u9364
Perl
\x{9364}
PHP
\x{9364}
Ruby
\u{9364}
Rust
\u{9364}
Go
\u9364

Web

CSS
\009364
HtmlDecimal
鍤
HtmlHexadecimal
鍤
Url
%E9%8D%A4

Code

MD5
691d69df82092db3477a839ee723b476
Sha1
de803ab6436af0ca60b7940151ee2ccd9c320b43
Base64
6Y2k

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9364';
console.log(char);  // Output: 鍤

Java:

char c = '\u9364';
System.out.println(c);  // Output: 鍤

JSON:

{"text": "\u9364"}  // Value: 鍤

Python:

char = '\u9364'
print(char)  # Output: 鍤

Perl:

my $char = "\x{9364}";
print $char;  # Output: 鍤

PHP:

$char = "\x{9364}";
echo $char;  // Output: 鍤

Ruby:

char = "\u{9364}"
puts char  # Output: 鍤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009364";  /* Display: 鍤 */
}

HTML Decimal:

<p>HTML decimal: &#37732;</p>  <!-- Display: 鍤 -->

HTML Hexadecimal:

<p>HTML hex: &#x9364;</p>  <!-- Display: 鍤 -->

URL Encoding:

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

Encodings

MD5:

691d69df82092db3477a839ee723b476

SHA1:

de803ab6436af0ca60b7940151ee2ccd9c320b43

Base64:

6Y2k