Unicode Finder

"勨" U+52E8(CJK UNIFIED IDEOGRAPH-52E8)

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

Programming

C
\u52E8
JavaScript
\u52E8
Java
\u52E8
Json
\u52E8
Python
\u52E8
Perl
\x{52E8}
PHP
\x{52E8}
Ruby
\u{52E8}
Rust
\u{52E8}
Go
\u52E8

Web

CSS
\0052E8
HtmlDecimal
勨
HtmlHexadecimal
勨
Url
%E5%8B%A8

Code

MD5
a5927142675d24245b4d1458814618ce
Sha1
719932c632ef18b02402bb81c3c8b6073488d8ac
Base64
5Yuo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u52E8';
console.log(char);  // Output: 勨

Java:

char c = '\u52E8';
System.out.println(c);  // Output: 勨

JSON:

{"text": "\u52E8"}  // Value: 勨

Python:

char = '\u52E8'
print(char)  # Output: 勨

Perl:

my $char = "\x{52E8}";
print $char;  # Output: 勨

PHP:

$char = "\x{52E8}";
echo $char;  // Output: 勨

Ruby:

char = "\u{52E8}"
puts char  # Output: 勨

Rust:

let c = '\u{52E8}';
println!("{}", c);  // Output: 勨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0052E8";  /* Display: 勨 */
}

HTML Decimal:

<p>HTML decimal: &#21224;</p>  <!-- Display: 勨 -->

HTML Hexadecimal:

<p>HTML hex: &#x52E8;</p>  <!-- Display: 勨 -->

URL Encoding:

// 勨 URL encoding
https://unicodefinder.com/search.php?query=%E5%8B%A8

Encodings

MD5:

a5927142675d24245b4d1458814618ce

SHA1:

719932c632ef18b02402bb81c3c8b6073488d8ac

Base64:

5Yuo