Unicode Finder

"鉒" U+9252(CJK UNIFIED IDEOGRAPH-9252)

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

Programming

C
\u9252
JavaScript
\u9252
Java
\u9252
Json
\u9252
Python
\u9252
Perl
\x{9252}
PHP
\x{9252}
Ruby
\u{9252}
Rust
\u{9252}
Go
\u9252

Web

CSS
\009252
HtmlDecimal
鉒
HtmlHexadecimal
鉒
Url
%E9%89%92

Code

MD5
67c268211223c6f0d0faf3e9bf51fd80
Sha1
2f973cb0e129d00735239dd6d8be39c1deb96c05
Base64
6YmS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9252';
console.log(char);  // Output: 鉒

Java:

char c = '\u9252';
System.out.println(c);  // Output: 鉒

JSON:

{"text": "\u9252"}  // Value: 鉒

Python:

char = '\u9252'
print(char)  # Output: 鉒

Perl:

my $char = "\x{9252}";
print $char;  # Output: 鉒

PHP:

$char = "\x{9252}";
echo $char;  // Output: 鉒

Ruby:

char = "\u{9252}"
puts char  # Output: 鉒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009252";  /* Display: 鉒 */
}

HTML Decimal:

<p>HTML decimal: &#37458;</p>  <!-- Display: 鉒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9252;</p>  <!-- Display: 鉒 -->

URL Encoding:

// 鉒 URL encoding
https://unicodefinder.com/search.php?query=%E9%89%92

Encodings

MD5:

67c268211223c6f0d0faf3e9bf51fd80

SHA1:

2f973cb0e129d00735239dd6d8be39c1deb96c05

Base64:

6YmS