Unicode Finder

"屉" U+5C49(CJK UNIFIED IDEOGRAPH-5C49)

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

Programming

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

Web

CSS
\005C49
HtmlDecimal
屉
HtmlHexadecimal
屉
Url
%E5%B1%89

Code

MD5
759abfc89406493f02beac99e501948e
Sha1
9a4df8eb67deb5072547f473738e54b019328933
Base64
5bGJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C49';
console.log(char);  // Output: 屉

Java:

char c = '\u5C49';
System.out.println(c);  // Output: 屉

JSON:

{"text": "\u5C49"}  // Value: 屉

Python:

char = '\u5C49'
print(char)  # Output: 屉

Perl:

my $char = "\x{5C49}";
print $char;  # Output: 屉

PHP:

$char = "\x{5C49}";
echo $char;  // Output: 屉

Ruby:

char = "\u{5C49}"
puts char  # Output: 屉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23625;</p>  <!-- Display: 屉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C49;</p>  <!-- Display: 屉 -->

URL Encoding:

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

Encodings

MD5:

759abfc89406493f02beac99e501948e

SHA1:

9a4df8eb67deb5072547f473738e54b019328933

Base64:

5bGJ