Unicode Finder

"屗" U+5C57(CJK UNIFIED IDEOGRAPH-5C57)

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

Programming

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

Web

CSS
\005C57
HtmlDecimal
屗
HtmlHexadecimal
屗
Url
%E5%B1%97

Code

MD5
3a2e3de6992cd0c40228ce18df294ac9
Sha1
29c87cf13948d9ecad7c1b0f795789ca9aa11a48
Base64
5bGX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C57';
console.log(char);  // Output: 屗

Java:

char c = '\u5C57';
System.out.println(c);  // Output: 屗

JSON:

{"text": "\u5C57"}  // Value: 屗

Python:

char = '\u5C57'
print(char)  # Output: 屗

Perl:

my $char = "\x{5C57}";
print $char;  # Output: 屗

PHP:

$char = "\x{5C57}";
echo $char;  // Output: 屗

Ruby:

char = "\u{5C57}"
puts char  # Output: 屗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23639;</p>  <!-- Display: 屗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C57;</p>  <!-- Display: 屗 -->

URL Encoding:

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

Encodings

MD5:

3a2e3de6992cd0c40228ce18df294ac9

SHA1:

29c87cf13948d9ecad7c1b0f795789ca9aa11a48

Base64:

5bGX