Unicode Finder

"劬" U+52AC(CJK UNIFIED IDEOGRAPH-52AC)

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

Programming

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

Web

CSS
\0052AC
HtmlDecimal
劬
HtmlHexadecimal
劬
Url
%E5%8A%AC

Code

MD5
220366ed751f3a195451f1736419e63b
Sha1
968b10f1c5672aa6cbdc3f693c242d9556a5ed37
Base64
5Yqs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52AC';
console.log(char);  // Output: 劬

Java:

char c = '\u52AC';
System.out.println(c);  // Output: 劬

JSON:

{"text": "\u52AC"}  // Value: 劬

Python:

char = '\u52AC'
print(char)  # Output: 劬

Perl:

my $char = "\x{52AC}";
print $char;  # Output: 劬

PHP:

$char = "\x{52AC}";
echo $char;  // Output: 劬

Ruby:

char = "\u{52AC}"
puts char  # Output: 劬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21164;</p>  <!-- Display: 劬 -->

HTML Hexadecimal:

<p>HTML hex: &#x52AC;</p>  <!-- Display: 劬 -->

URL Encoding:

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

Encodings

MD5:

220366ed751f3a195451f1736419e63b

SHA1:

968b10f1c5672aa6cbdc3f693c242d9556a5ed37

Base64:

5Yqs