Unicode Finder

"鑓" U+9453(CJK UNIFIED IDEOGRAPH-9453)

U+9453
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9453

Programming

C
\u9453
JavaScript
\u9453
Java
\u9453
Json
\u9453
Python
\u9453
Perl
\x{9453}
PHP
\x{9453}
Ruby
\u{9453}
Rust
\u{9453}
Go
\u9453

Web

CSS
\009453
HtmlDecimal
鑓
HtmlHexadecimal
鑓
Url
%E9%91%93

Code

MD5
d137d435f4011faa56a9cd3ddc15f3bc
Sha1
add9737975654b8af9ea577f7c2893ddbeb1c3e9
Base64
6ZGT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9453';
console.log(char);  // Output: 鑓

Java:

char c = '\u9453';
System.out.println(c);  // Output: 鑓

JSON:

{"text": "\u9453"}  // Value: 鑓

Python:

char = '\u9453'
print(char)  # Output: 鑓

Perl:

my $char = "\x{9453}";
print $char;  # Output: 鑓

PHP:

$char = "\x{9453}";
echo $char;  // Output: 鑓

Ruby:

char = "\u{9453}"
puts char  # Output: 鑓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009453";  /* Display: 鑓 */
}

HTML Decimal:

<p>HTML decimal: &#37971;</p>  <!-- Display: 鑓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9453;</p>  <!-- Display: 鑓 -->

URL Encoding:

// 鑓 URL encoding
https://unicodefinder.com/search.php?query=%E9%91%93

Encodings

MD5:

d137d435f4011faa56a9cd3ddc15f3bc

SHA1:

add9737975654b8af9ea577f7c2893ddbeb1c3e9

Base64:

6ZGT