Unicode Finder

"錢" U+9322(CJK UNIFIED IDEOGRAPH-9322)

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

Programming

C
\u9322
JavaScript
\u9322
Java
\u9322
Json
\u9322
Python
\u9322
Perl
\x{9322}
PHP
\x{9322}
Ruby
\u{9322}
Rust
\u{9322}
Go
\u9322

Web

CSS
\009322
HtmlDecimal
錢
HtmlHexadecimal
錢
Url
%E9%8C%A2

Code

MD5
8736570e757e1773f6ecd1bef0efb38b
Sha1
04ffe5d375308b1676a3017179d4db84f4516e63
Base64
6Yyi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9322';
console.log(char);  // Output: 錢

Java:

char c = '\u9322';
System.out.println(c);  // Output: 錢

JSON:

{"text": "\u9322"}  // Value: 錢

Python:

char = '\u9322'
print(char)  # Output: 錢

Perl:

my $char = "\x{9322}";
print $char;  # Output: 錢

PHP:

$char = "\x{9322}";
echo $char;  // Output: 錢

Ruby:

char = "\u{9322}"
puts char  # Output: 錢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009322";  /* Display: 錢 */
}

HTML Decimal:

<p>HTML decimal: &#37666;</p>  <!-- Display: 錢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9322;</p>  <!-- Display: 錢 -->

URL Encoding:

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

Encodings

MD5:

8736570e757e1773f6ecd1bef0efb38b

SHA1:

04ffe5d375308b1676a3017179d4db84f4516e63

Base64:

6Yyi