Unicode Finder

"屖" U+5C56(CJK UNIFIED IDEOGRAPH-5C56)

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

Programming

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

Web

CSS
\005C56
HtmlDecimal
屖
HtmlHexadecimal
屖
Url
%E5%B1%96

Code

MD5
30118c6f8de6939e690306bb9cbde135
Sha1
90719750decb64d3e812c12806ca5e86ea2105c2
Base64
5bGW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C56';
console.log(char);  // Output: 屖

Java:

char c = '\u5C56';
System.out.println(c);  // Output: 屖

JSON:

{"text": "\u5C56"}  // Value: 屖

Python:

char = '\u5C56'
print(char)  # Output: 屖

Perl:

my $char = "\x{5C56}";
print $char;  # Output: 屖

PHP:

$char = "\x{5C56}";
echo $char;  // Output: 屖

Ruby:

char = "\u{5C56}"
puts char  # Output: 屖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23638;</p>  <!-- Display: 屖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C56;</p>  <!-- Display: 屖 -->

URL Encoding:

// 屖 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%96

Encodings

MD5:

30118c6f8de6939e690306bb9cbde135

SHA1:

90719750decb64d3e812c12806ca5e86ea2105c2

Base64:

5bGW