Unicode Finder

"屎" U+5C4E(CJK UNIFIED IDEOGRAPH-5C4E)

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

Programming

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

Web

CSS
\005C4E
HtmlDecimal
屎
HtmlHexadecimal
屎
Url
%E5%B1%8E

Code

MD5
3418aed28b42d6f59d2725e3b0e85765
Sha1
3e7e1520cfc772fa90faa5e092a1f5ffee159e87
Base64
5bGO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C4E';
console.log(char);  // Output: 屎

Java:

char c = '\u5C4E';
System.out.println(c);  // Output: 屎

JSON:

{"text": "\u5C4E"}  // Value: 屎

Python:

char = '\u5C4E'
print(char)  # Output: 屎

Perl:

my $char = "\x{5C4E}";
print $char;  # Output: 屎

PHP:

$char = "\x{5C4E}";
echo $char;  // Output: 屎

Ruby:

char = "\u{5C4E}"
puts char  # Output: 屎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23630;</p>  <!-- Display: 屎 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C4E;</p>  <!-- Display: 屎 -->

URL Encoding:

// 屎 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%8E

Encodings

MD5:

3418aed28b42d6f59d2725e3b0e85765

SHA1:

3e7e1520cfc772fa90faa5e092a1f5ffee159e87

Base64:

5bGO