Unicode Finder

"錣" U+9323(CJK UNIFIED IDEOGRAPH-9323)

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

Programming

C
\u9323
JavaScript
\u9323
Java
\u9323
Json
\u9323
Python
\u9323
Perl
\x{9323}
PHP
\x{9323}
Ruby
\u{9323}
Rust
\u{9323}
Go
\u9323

Web

CSS
\009323
HtmlDecimal
錣
HtmlHexadecimal
錣
Url
%E9%8C%A3

Code

MD5
5350bd3056e4f2d4936a83f4d2cafc36
Sha1
4aeaf01f1aef0dc9a8a27f30c0dc200105085c43
Base64
6Yyj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9323';
console.log(char);  // Output: 錣

Java:

char c = '\u9323';
System.out.println(c);  // Output: 錣

JSON:

{"text": "\u9323"}  // Value: 錣

Python:

char = '\u9323'
print(char)  # Output: 錣

Perl:

my $char = "\x{9323}";
print $char;  # Output: 錣

PHP:

$char = "\x{9323}";
echo $char;  // Output: 錣

Ruby:

char = "\u{9323}"
puts char  # Output: 錣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009323";  /* Display: 錣 */
}

HTML Decimal:

<p>HTML decimal: &#37667;</p>  <!-- Display: 錣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9323;</p>  <!-- Display: 錣 -->

URL Encoding:

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

Encodings

MD5:

5350bd3056e4f2d4936a83f4d2cafc36

SHA1:

4aeaf01f1aef0dc9a8a27f30c0dc200105085c43

Base64:

6Yyj