Unicode Finder

"帙" U+5E19(CJK UNIFIED IDEOGRAPH-5E19)

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

Programming

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

Web

CSS
\005E19
HtmlDecimal
帙
HtmlHexadecimal
帙
Url
%E5%B8%99

Code

MD5
80909adde6be1d222c4cc67545a2ca46
Sha1
2d3d979eaecaf9417f119f403aeedf62fed42156
Base64
5biZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E19';
console.log(char);  // Output: 帙

Java:

char c = '\u5E19';
System.out.println(c);  // Output: 帙

JSON:

{"text": "\u5E19"}  // Value: 帙

Python:

char = '\u5E19'
print(char)  # Output: 帙

Perl:

my $char = "\x{5E19}";
print $char;  # Output: 帙

PHP:

$char = "\x{5E19}";
echo $char;  // Output: 帙

Ruby:

char = "\u{5E19}"
puts char  # Output: 帙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24089;</p>  <!-- Display: 帙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E19;</p>  <!-- Display: 帙 -->

URL Encoding:

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

Encodings

MD5:

80909adde6be1d222c4cc67545a2ca46

SHA1:

2d3d979eaecaf9417f119f403aeedf62fed42156

Base64:

5biZ