Unicode Finder

"鍩" U+9369(CJK UNIFIED IDEOGRAPH-9369)

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

Programming

C
\u9369
JavaScript
\u9369
Java
\u9369
Json
\u9369
Python
\u9369
Perl
\x{9369}
PHP
\x{9369}
Ruby
\u{9369}
Rust
\u{9369}
Go
\u9369

Web

CSS
\009369
HtmlDecimal
鍩
HtmlHexadecimal
鍩
Url
%E9%8D%A9

Code

MD5
1d08013e09485ec2ef2d02a3f1a5a2da
Sha1
a5b4820488d51dea2d16f4302fe5186cc92f7b80
Base64
6Y2p

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9369';
console.log(char);  // Output: 鍩

Java:

char c = '\u9369';
System.out.println(c);  // Output: 鍩

JSON:

{"text": "\u9369"}  // Value: 鍩

Python:

char = '\u9369'
print(char)  # Output: 鍩

Perl:

my $char = "\x{9369}";
print $char;  # Output: 鍩

PHP:

$char = "\x{9369}";
echo $char;  // Output: 鍩

Ruby:

char = "\u{9369}"
puts char  # Output: 鍩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009369";  /* Display: 鍩 */
}

HTML Decimal:

<p>HTML decimal: &#37737;</p>  <!-- Display: 鍩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9369;</p>  <!-- Display: 鍩 -->

URL Encoding:

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

Encodings

MD5:

1d08013e09485ec2ef2d02a3f1a5a2da

SHA1:

a5b4820488d51dea2d16f4302fe5186cc92f7b80

Base64:

6Y2p