Unicode Finder

"錡" U+9321(CJK UNIFIED IDEOGRAPH-9321)

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

Programming

C
\u9321
JavaScript
\u9321
Java
\u9321
Json
\u9321
Python
\u9321
Perl
\x{9321}
PHP
\x{9321}
Ruby
\u{9321}
Rust
\u{9321}
Go
\u9321

Web

CSS
\009321
HtmlDecimal
錡
HtmlHexadecimal
錡
Url
%E9%8C%A1

Code

MD5
4cc1a215f2888eb4e1e54600546d76f6
Sha1
b8c8528915854cd3f38eb3c7e0e2e6f0ddd8aa0a
Base64
6Yyh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9321';
console.log(char);  // Output: 錡

Java:

char c = '\u9321';
System.out.println(c);  // Output: 錡

JSON:

{"text": "\u9321"}  // Value: 錡

Python:

char = '\u9321'
print(char)  # Output: 錡

Perl:

my $char = "\x{9321}";
print $char;  # Output: 錡

PHP:

$char = "\x{9321}";
echo $char;  // Output: 錡

Ruby:

char = "\u{9321}"
puts char  # Output: 錡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009321";  /* Display: 錡 */
}

HTML Decimal:

<p>HTML decimal: &#37665;</p>  <!-- Display: 錡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9321;</p>  <!-- Display: 錡 -->

URL Encoding:

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

Encodings

MD5:

4cc1a215f2888eb4e1e54600546d76f6

SHA1:

b8c8528915854cd3f38eb3c7e0e2e6f0ddd8aa0a

Base64:

6Yyh