Unicode Finder

"鎗" U+9397(CJK UNIFIED IDEOGRAPH-9397)

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

Programming

C
\u9397
JavaScript
\u9397
Java
\u9397
Json
\u9397
Python
\u9397
Perl
\x{9397}
PHP
\x{9397}
Ruby
\u{9397}
Rust
\u{9397}
Go
\u9397

Web

CSS
\009397
HtmlDecimal
鎗
HtmlHexadecimal
鎗
Url
%E9%8E%97

Code

MD5
698ef6d03935fd7896ff53591452db8d
Sha1
f4972b45bce2696f7348508596ff252ffd77b943
Base64
6Y6X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9397';
console.log(char);  // Output: 鎗

Java:

char c = '\u9397';
System.out.println(c);  // Output: 鎗

JSON:

{"text": "\u9397"}  // Value: 鎗

Python:

char = '\u9397'
print(char)  # Output: 鎗

Perl:

my $char = "\x{9397}";
print $char;  # Output: 鎗

PHP:

$char = "\x{9397}";
echo $char;  // Output: 鎗

Ruby:

char = "\u{9397}"
puts char  # Output: 鎗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009397";  /* Display: 鎗 */
}

HTML Decimal:

<p>HTML decimal: &#37783;</p>  <!-- Display: 鎗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9397;</p>  <!-- Display: 鎗 -->

URL Encoding:

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

Encodings

MD5:

698ef6d03935fd7896ff53591452db8d

SHA1:

f4972b45bce2696f7348508596ff252ffd77b943

Base64:

6Y6X