Unicode Finder

"尪" U+5C2A(CJK UNIFIED IDEOGRAPH-5C2A)

U+5C2A
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5C2A

Programming

C
\u5C2A
JavaScript
\u5C2A
Java
\u5C2A
Json
\u5C2A
Python
\u5C2A
Perl
\x{5C2A}
PHP
\x{5C2A}
Ruby
\u{5C2A}
Rust
\u{5C2A}
Go
\u5C2A

Web

CSS
\005C2A
HtmlDecimal
尪
HtmlHexadecimal
尪
Url
%E5%B0%AA

Code

MD5
9b3ce87a264d4a4541852e7e8fd1d8a9
Sha1
9235fde35a05848dde4efb1861c0f97df2df8de3
Base64
5bCq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C2A';
console.log(char);  // Output: 尪

Java:

char c = '\u5C2A';
System.out.println(c);  // Output: 尪

JSON:

{"text": "\u5C2A"}  // Value: 尪

Python:

char = '\u5C2A'
print(char)  # Output: 尪

Perl:

my $char = "\x{5C2A}";
print $char;  # Output: 尪

PHP:

$char = "\x{5C2A}";
echo $char;  // Output: 尪

Ruby:

char = "\u{5C2A}"
puts char  # Output: 尪

Rust:

let c = '\u{5C2A}';
println!("{}", c);  // Output: 尪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C2A";  /* Display: 尪 */
}

HTML Decimal:

<p>HTML decimal: &#23594;</p>  <!-- Display: 尪 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C2A;</p>  <!-- Display: 尪 -->

URL Encoding:

// 尪 URL encoding
https://unicodefinder.com/search.php?query=%E5%B0%AA

Encodings

MD5:

9b3ce87a264d4a4541852e7e8fd1d8a9

SHA1:

9235fde35a05848dde4efb1861c0f97df2df8de3

Base64:

5bCq