Unicode Finder

"屙" U+5C59(CJK UNIFIED IDEOGRAPH-5C59)

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

Programming

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

Web

CSS
\005C59
HtmlDecimal
屙
HtmlHexadecimal
屙
Url
%E5%B1%99

Code

MD5
25982f46f66c7636529521d18d304591
Sha1
bc305f8be71f9605439324fa2662246478216d2f
Base64
5bGZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C59';
console.log(char);  // Output: 屙

Java:

char c = '\u5C59';
System.out.println(c);  // Output: 屙

JSON:

{"text": "\u5C59"}  // Value: 屙

Python:

char = '\u5C59'
print(char)  # Output: 屙

Perl:

my $char = "\x{5C59}";
print $char;  # Output: 屙

PHP:

$char = "\x{5C59}";
echo $char;  // Output: 屙

Ruby:

char = "\u{5C59}"
puts char  # Output: 屙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23641;</p>  <!-- Display: 屙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C59;</p>  <!-- Display: 屙 -->

URL Encoding:

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

Encodings

MD5:

25982f46f66c7636529521d18d304591

SHA1:

bc305f8be71f9605439324fa2662246478216d2f

Base64:

5bGZ