Unicode Finder

"錠" U+9320(CJK UNIFIED IDEOGRAPH-9320)

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

Programming

C
\u9320
JavaScript
\u9320
Java
\u9320
Json
\u9320
Python
\u9320
Perl
\x{9320}
PHP
\x{9320}
Ruby
\u{9320}
Rust
\u{9320}
Go
\u9320

Web

CSS
\009320
HtmlDecimal
錠
HtmlHexadecimal
錠
Url
%E9%8C%A0

Code

MD5
2948b7333218472f233974c25f1a4a9e
Sha1
6d06fe52344b2414e0918dabcddfa7f24366599d
Base64
6Yyg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9320';
console.log(char);  // Output: 錠

Java:

char c = '\u9320';
System.out.println(c);  // Output: 錠

JSON:

{"text": "\u9320"}  // Value: 錠

Python:

char = '\u9320'
print(char)  # Output: 錠

Perl:

my $char = "\x{9320}";
print $char;  # Output: 錠

PHP:

$char = "\x{9320}";
echo $char;  // Output: 錠

Ruby:

char = "\u{9320}"
puts char  # Output: 錠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009320";  /* Display: 錠 */
}

HTML Decimal:

<p>HTML decimal: &#37664;</p>  <!-- Display: 錠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9320;</p>  <!-- Display: 錠 -->

URL Encoding:

// 錠 URL encoding
https://unicodefinder.com/search.php?query=%E9%8C%A0

Encodings

MD5:

2948b7333218472f233974c25f1a4a9e

SHA1:

6d06fe52344b2414e0918dabcddfa7f24366599d

Base64:

6Yyg