Unicode Finder

"鍴" U+9374(CJK UNIFIED IDEOGRAPH-9374)

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

Programming

C
\u9374
JavaScript
\u9374
Java
\u9374
Json
\u9374
Python
\u9374
Perl
\x{9374}
PHP
\x{9374}
Ruby
\u{9374}
Rust
\u{9374}
Go
\u9374

Web

CSS
\009374
HtmlDecimal
鍴
HtmlHexadecimal
鍴
Url
%E9%8D%B4

Code

MD5
057414d69f451d8138e289b6d5aba237
Sha1
7aca20eea5a4a7105b67cd9ee7e10023f01dcaa8
Base64
6Y20

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9374';
console.log(char);  // Output: 鍴

Java:

char c = '\u9374';
System.out.println(c);  // Output: 鍴

JSON:

{"text": "\u9374"}  // Value: 鍴

Python:

char = '\u9374'
print(char)  # Output: 鍴

Perl:

my $char = "\x{9374}";
print $char;  # Output: 鍴

PHP:

$char = "\x{9374}";
echo $char;  // Output: 鍴

Ruby:

char = "\u{9374}"
puts char  # Output: 鍴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009374";  /* Display: 鍴 */
}

HTML Decimal:

<p>HTML decimal: &#37748;</p>  <!-- Display: 鍴 -->

HTML Hexadecimal:

<p>HTML hex: &#x9374;</p>  <!-- Display: 鍴 -->

URL Encoding:

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

Encodings

MD5:

057414d69f451d8138e289b6d5aba237

SHA1:

7aca20eea5a4a7105b67cd9ee7e10023f01dcaa8

Base64:

6Y20