Unicode Finder

"鍨" U+9368(CJK UNIFIED IDEOGRAPH-9368)

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

Programming

C
\u9368
JavaScript
\u9368
Java
\u9368
Json
\u9368
Python
\u9368
Perl
\x{9368}
PHP
\x{9368}
Ruby
\u{9368}
Rust
\u{9368}
Go
\u9368

Web

CSS
\009368
HtmlDecimal
鍨
HtmlHexadecimal
鍨
Url
%E9%8D%A8

Code

MD5
aa13b2d1fd34bee7329079350d3c186b
Sha1
2332ab80ee8a380500859f43e15832a782b04cf8
Base64
6Y2o

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9368';
console.log(char);  // Output: 鍨

Java:

char c = '\u9368';
System.out.println(c);  // Output: 鍨

JSON:

{"text": "\u9368"}  // Value: 鍨

Python:

char = '\u9368'
print(char)  # Output: 鍨

Perl:

my $char = "\x{9368}";
print $char;  # Output: 鍨

PHP:

$char = "\x{9368}";
echo $char;  // Output: 鍨

Ruby:

char = "\u{9368}"
puts char  # Output: 鍨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009368";  /* Display: 鍨 */
}

HTML Decimal:

<p>HTML decimal: &#37736;</p>  <!-- Display: 鍨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9368;</p>  <!-- Display: 鍨 -->

URL Encoding:

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

Encodings

MD5:

aa13b2d1fd34bee7329079350d3c186b

SHA1:

2332ab80ee8a380500859f43e15832a782b04cf8

Base64:

6Y2o