Unicode Finder

"尀" U+5C00(CJK UNIFIED IDEOGRAPH-5C00)

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

Programming

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

Web

CSS
\005C00
HtmlDecimal
尀
HtmlHexadecimal
尀
Url
%E5%B0%80

Code

MD5
bb270895c64e02007174a9fcc0e69faa
Sha1
806871a8477708617d8bafb9a1351433be049901
Base64
5bCA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C00';
console.log(char);  // Output: 尀

Java:

char c = '\u5C00';
System.out.println(c);  // Output: 尀

JSON:

{"text": "\u5C00"}  // Value: 尀

Python:

char = '\u5C00'
print(char)  # Output: 尀

Perl:

my $char = "\x{5C00}";
print $char;  # Output: 尀

PHP:

$char = "\x{5C00}";
echo $char;  // Output: 尀

Ruby:

char = "\u{5C00}"
puts char  # Output: 尀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23552;</p>  <!-- Display: 尀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C00;</p>  <!-- Display: 尀 -->

URL Encoding:

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

Encodings

MD5:

bb270895c64e02007174a9fcc0e69faa

SHA1:

806871a8477708617d8bafb9a1351433be049901

Base64:

5bCA