Unicode Finder

"劯" U+52AF(CJK UNIFIED IDEOGRAPH-52AF)

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

Programming

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

Web

CSS
\0052AF
HtmlDecimal
劯
HtmlHexadecimal
劯
Url
%E5%8A%AF

Code

MD5
148cae789ecee4497105fe8cb1165797
Sha1
3807d0fd1f06e85724ca9f76cef57caf291413be
Base64
5Yqv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52AF';
console.log(char);  // Output: 劯

Java:

char c = '\u52AF';
System.out.println(c);  // Output: 劯

JSON:

{"text": "\u52AF"}  // Value: 劯

Python:

char = '\u52AF'
print(char)  # Output: 劯

Perl:

my $char = "\x{52AF}";
print $char;  # Output: 劯

PHP:

$char = "\x{52AF}";
echo $char;  // Output: 劯

Ruby:

char = "\u{52AF}"
puts char  # Output: 劯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21167;</p>  <!-- Display: 劯 -->

HTML Hexadecimal:

<p>HTML hex: &#x52AF;</p>  <!-- Display: 劯 -->

URL Encoding:

// 劯 URL encoding
https://unicodefinder.com/search.php?query=%E5%8A%AF

Encodings

MD5:

148cae789ecee4497105fe8cb1165797

SHA1:

3807d0fd1f06e85724ca9f76cef57caf291413be

Base64:

5Yqv