Unicode Finder

"勄" U+52C4(CJK UNIFIED IDEOGRAPH-52C4)

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

Programming

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

Web

CSS
\0052C4
HtmlDecimal
勄
HtmlHexadecimal
勄
Url
%E5%8B%84

Code

MD5
47e18d922d4f479046235c1968aa3bfa
Sha1
5c1a9f8e37ba65511401a5c5884c97a679e691ea
Base64
5YuE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52C4';
console.log(char);  // Output: 勄

Java:

char c = '\u52C4';
System.out.println(c);  // Output: 勄

JSON:

{"text": "\u52C4"}  // Value: 勄

Python:

char = '\u52C4'
print(char)  # Output: 勄

Perl:

my $char = "\x{52C4}";
print $char;  # Output: 勄

PHP:

$char = "\x{52C4}";
echo $char;  // Output: 勄

Ruby:

char = "\u{52C4}"
puts char  # Output: 勄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21188;</p>  <!-- Display: 勄 -->

HTML Hexadecimal:

<p>HTML hex: &#x52C4;</p>  <!-- Display: 勄 -->

URL Encoding:

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

Encodings

MD5:

47e18d922d4f479046235c1968aa3bfa

SHA1:

5c1a9f8e37ba65511401a5c5884c97a679e691ea

Base64:

5YuE