Unicode Finder

"錩" U+9329(CJK UNIFIED IDEOGRAPH-9329)

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

Programming

C
\u9329
JavaScript
\u9329
Java
\u9329
Json
\u9329
Python
\u9329
Perl
\x{9329}
PHP
\x{9329}
Ruby
\u{9329}
Rust
\u{9329}
Go
\u9329

Web

CSS
\009329
HtmlDecimal
錩
HtmlHexadecimal
錩
Url
%E9%8C%A9

Code

MD5
0368a58facfcc42725b34b4160c960b5
Sha1
b2b37581562b73144e35a5ff0789a7343b913438
Base64
6Yyp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9329';
console.log(char);  // Output: 錩

Java:

char c = '\u9329';
System.out.println(c);  // Output: 錩

JSON:

{"text": "\u9329"}  // Value: 錩

Python:

char = '\u9329'
print(char)  # Output: 錩

Perl:

my $char = "\x{9329}";
print $char;  # Output: 錩

PHP:

$char = "\x{9329}";
echo $char;  // Output: 錩

Ruby:

char = "\u{9329}"
puts char  # Output: 錩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009329";  /* Display: 錩 */
}

HTML Decimal:

<p>HTML decimal: &#37673;</p>  <!-- Display: 錩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9329;</p>  <!-- Display: 錩 -->

URL Encoding:

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

Encodings

MD5:

0368a58facfcc42725b34b4160c960b5

SHA1:

b2b37581562b73144e35a5ff0789a7343b913438

Base64:

6Yyp