Unicode Finder

"尡" U+5C21(CJK UNIFIED IDEOGRAPH-5C21)

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

Programming

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

Web

CSS
\005C21
HtmlDecimal
尡
HtmlHexadecimal
尡
Url
%E5%B0%A1

Code

MD5
e1eb38727b9a246481540e53f0d05913
Sha1
97df6793165ca1f0e4bb2076a9ee02fd3da6ae26
Base64
5bCh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C21';
console.log(char);  // Output: 尡

Java:

char c = '\u5C21';
System.out.println(c);  // Output: 尡

JSON:

{"text": "\u5C21"}  // Value: 尡

Python:

char = '\u5C21'
print(char)  # Output: 尡

Perl:

my $char = "\x{5C21}";
print $char;  # Output: 尡

PHP:

$char = "\x{5C21}";
echo $char;  // Output: 尡

Ruby:

char = "\u{5C21}"
puts char  # Output: 尡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23585;</p>  <!-- Display: 尡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C21;</p>  <!-- Display: 尡 -->

URL Encoding:

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

Encodings

MD5:

e1eb38727b9a246481540e53f0d05913

SHA1:

97df6793165ca1f0e4bb2076a9ee02fd3da6ae26

Base64:

5bCh