Unicode Finder

"鎖" U+9396(CJK UNIFIED IDEOGRAPH-9396)

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

Programming

C
\u9396
JavaScript
\u9396
Java
\u9396
Json
\u9396
Python
\u9396
Perl
\x{9396}
PHP
\x{9396}
Ruby
\u{9396}
Rust
\u{9396}
Go
\u9396

Web

CSS
\009396
HtmlDecimal
鎖
HtmlHexadecimal
鎖
Url
%E9%8E%96

Code

MD5
3f3b44b82e1df26e9d1aedd75d8456a4
Sha1
2aa3e2d1699e898411209b048309f6465c77e097
Base64
6Y6W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9396';
console.log(char);  // Output: 鎖

Java:

char c = '\u9396';
System.out.println(c);  // Output: 鎖

JSON:

{"text": "\u9396"}  // Value: 鎖

Python:

char = '\u9396'
print(char)  # Output: 鎖

Perl:

my $char = "\x{9396}";
print $char;  # Output: 鎖

PHP:

$char = "\x{9396}";
echo $char;  // Output: 鎖

Ruby:

char = "\u{9396}"
puts char  # Output: 鎖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009396";  /* Display: 鎖 */
}

HTML Decimal:

<p>HTML decimal: &#37782;</p>  <!-- Display: 鎖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9396;</p>  <!-- Display: 鎖 -->

URL Encoding:

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

Encodings

MD5:

3f3b44b82e1df26e9d1aedd75d8456a4

SHA1:

2aa3e2d1699e898411209b048309f6465c77e097

Base64:

6Y6W