Unicode Finder

"鍰" U+9370(CJK UNIFIED IDEOGRAPH-9370)

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

Programming

C
\u9370
JavaScript
\u9370
Java
\u9370
Json
\u9370
Python
\u9370
Perl
\x{9370}
PHP
\x{9370}
Ruby
\u{9370}
Rust
\u{9370}
Go
\u9370

Web

CSS
\009370
HtmlDecimal
鍰
HtmlHexadecimal
鍰
Url
%E9%8D%B0

Code

MD5
2183d6eea721e01e8b8fbe45fe99f70f
Sha1
7ee90d2db4aa25eb62a1543db205a7530c565238
Base64
6Y2w

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9370';
console.log(char);  // Output: 鍰

Java:

char c = '\u9370';
System.out.println(c);  // Output: 鍰

JSON:

{"text": "\u9370"}  // Value: 鍰

Python:

char = '\u9370'
print(char)  # Output: 鍰

Perl:

my $char = "\x{9370}";
print $char;  # Output: 鍰

PHP:

$char = "\x{9370}";
echo $char;  // Output: 鍰

Ruby:

char = "\u{9370}"
puts char  # Output: 鍰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009370";  /* Display: 鍰 */
}

HTML Decimal:

<p>HTML decimal: &#37744;</p>  <!-- Display: 鍰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9370;</p>  <!-- Display: 鍰 -->

URL Encoding:

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

Encodings

MD5:

2183d6eea721e01e8b8fbe45fe99f70f

SHA1:

7ee90d2db4aa25eb62a1543db205a7530c565238

Base64:

6Y2w