Unicode Finder

"勰" U+52F0(CJK UNIFIED IDEOGRAPH-52F0)

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

Programming

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

Web

CSS
\0052F0
HtmlDecimal
勰
HtmlHexadecimal
勰
Url
%E5%8B%B0

Code

MD5
03088d34c92087d85f8c16c2e4443137
Sha1
de2cc73b99e5ec0cb82145b75fccdebb6afb2b46
Base64
5Yuw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u52F0';
console.log(char);  // Output: 勰

Java:

char c = '\u52F0';
System.out.println(c);  // Output: 勰

JSON:

{"text": "\u52F0"}  // Value: 勰

Python:

char = '\u52F0'
print(char)  # Output: 勰

Perl:

my $char = "\x{52F0}";
print $char;  # Output: 勰

PHP:

$char = "\x{52F0}";
echo $char;  // Output: 勰

Ruby:

char = "\u{52F0}"
puts char  # Output: 勰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21232;</p>  <!-- Display: 勰 -->

HTML Hexadecimal:

<p>HTML hex: &#x52F0;</p>  <!-- Display: 勰 -->

URL Encoding:

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

Encodings

MD5:

03088d34c92087d85f8c16c2e4443137

SHA1:

de2cc73b99e5ec0cb82145b75fccdebb6afb2b46

Base64:

5Yuw