Unicode Finder

"屁" U+5C41(CJK UNIFIED IDEOGRAPH-5C41)

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

Programming

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

Web

CSS
\005C41
HtmlDecimal
屁
HtmlHexadecimal
屁
Url
%E5%B1%81

Code

MD5
631697ae657fa85fef677ba5eabeee9b
Sha1
97b155934ded948c43f831b2c7ebaf783aab0925
Base64
5bGB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C41';
console.log(char);  // Output: 屁

Java:

char c = '\u5C41';
System.out.println(c);  // Output: 屁

JSON:

{"text": "\u5C41"}  // Value: 屁

Python:

char = '\u5C41'
print(char)  # Output: 屁

Perl:

my $char = "\x{5C41}";
print $char;  # Output: 屁

PHP:

$char = "\x{5C41}";
echo $char;  // Output: 屁

Ruby:

char = "\u{5C41}"
puts char  # Output: 屁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23617;</p>  <!-- Display: 屁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C41;</p>  <!-- Display: 屁 -->

URL Encoding:

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

Encodings

MD5:

631697ae657fa85fef677ba5eabeee9b

SHA1:

97b155934ded948c43f831b2c7ebaf783aab0925

Base64:

5bGB