Unicode Finder

"庫" U+5EAB(CJK UNIFIED IDEOGRAPH-5EAB)

U+5EAB
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5EAB

Programming

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

Web

CSS
\005EAB
HtmlDecimal
庫
HtmlHexadecimal
庫
Url
%E5%BA%AB

Code

MD5
23f35f0f26c5126cc357bc7805de2e5c
Sha1
090075178f0ff270a8c4c4edfa6eb845475ec5a4
Base64
5bqr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EAB';
console.log(char);  // Output: 庫

Java:

char c = '\u5EAB';
System.out.println(c);  // Output: 庫

JSON:

{"text": "\u5EAB"}  // Value: 庫

Python:

char = '\u5EAB'
print(char)  # Output: 庫

Perl:

my $char = "\x{5EAB}";
print $char;  # Output: 庫

PHP:

$char = "\x{5EAB}";
echo $char;  // Output: 庫

Ruby:

char = "\u{5EAB}"
puts char  # Output: 庫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24235;</p>  <!-- Display: 庫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EAB;</p>  <!-- Display: 庫 -->

URL Encoding:

// 庫 URL encoding
https://unicodefinder.com/search.php?query=%E5%BA%AB

Encodings

MD5:

23f35f0f26c5126cc357bc7805de2e5c

SHA1:

090075178f0ff270a8c4c4edfa6eb845475ec5a4

Base64:

5bqr