Unicode Finder

"鍵" U+9375(CJK UNIFIED IDEOGRAPH-9375)

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

Programming

C
\u9375
JavaScript
\u9375
Java
\u9375
Json
\u9375
Python
\u9375
Perl
\x{9375}
PHP
\x{9375}
Ruby
\u{9375}
Rust
\u{9375}
Go
\u9375

Web

CSS
\009375
HtmlDecimal
鍵
HtmlHexadecimal
鍵
Url
%E9%8D%B5

Code

MD5
d9756785d9a869153a6a679525ef971c
Sha1
287a06131f4dbe1c9a6ba75c7b8d0e29e48db102
Base64
6Y21

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9375';
console.log(char);  // Output: 鍵

Java:

char c = '\u9375';
System.out.println(c);  // Output: 鍵

JSON:

{"text": "\u9375"}  // Value: 鍵

Python:

char = '\u9375'
print(char)  # Output: 鍵

Perl:

my $char = "\x{9375}";
print $char;  # Output: 鍵

PHP:

$char = "\x{9375}";
echo $char;  // Output: 鍵

Ruby:

char = "\u{9375}"
puts char  # Output: 鍵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009375";  /* Display: 鍵 */
}

HTML Decimal:

<p>HTML decimal: &#37749;</p>  <!-- Display: 鍵 -->

HTML Hexadecimal:

<p>HTML hex: &#x9375;</p>  <!-- Display: 鍵 -->

URL Encoding:

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

Encodings

MD5:

d9756785d9a869153a6a679525ef971c

SHA1:

287a06131f4dbe1c9a6ba75c7b8d0e29e48db102

Base64:

6Y21