Unicode Finder

"屝" U+5C5D(CJK UNIFIED IDEOGRAPH-5C5D)

U+5C5D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5C5D

Programming

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

Web

CSS
\005C5D
HtmlDecimal
屝
HtmlHexadecimal
屝
Url
%E5%B1%9D

Code

MD5
7e8f47fe202902db8998baa35a171ffb
Sha1
ecec285f5a26c6640ae7e48bf1f14c91d9e6fd53
Base64
5bGd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5C5D';
console.log(char);  // Output: 屝

Java:

char c = '\u5C5D';
System.out.println(c);  // Output: 屝

JSON:

{"text": "\u5C5D"}  // Value: 屝

Python:

char = '\u5C5D'
print(char)  # Output: 屝

Perl:

my $char = "\x{5C5D}";
print $char;  # Output: 屝

PHP:

$char = "\x{5C5D}";
echo $char;  // Output: 屝

Ruby:

char = "\u{5C5D}"
puts char  # Output: 屝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23645;</p>  <!-- Display: 屝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C5D;</p>  <!-- Display: 屝 -->

URL Encoding:

// 屝 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%9D

Encodings

MD5:

7e8f47fe202902db8998baa35a171ffb

SHA1:

ecec285f5a26c6640ae7e48bf1f14c91d9e6fd53

Base64:

5bGd