Unicode Finder

"庯" U+5EAF(CJK UNIFIED IDEOGRAPH-5EAF)

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

Programming

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

Web

CSS
\005EAF
HtmlDecimal
庯
HtmlHexadecimal
庯
Url
%E5%BA%AF

Code

MD5
bee52a410a30d884c209aa5dc9c49a66
Sha1
e1641aeeaf6ad1fcd09827c577d53ad6bbbab9de
Base64
5bqv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EAF';
console.log(char);  // Output: 庯

Java:

char c = '\u5EAF';
System.out.println(c);  // Output: 庯

JSON:

{"text": "\u5EAF"}  // Value: 庯

Python:

char = '\u5EAF'
print(char)  # Output: 庯

Perl:

my $char = "\x{5EAF}";
print $char;  # Output: 庯

PHP:

$char = "\x{5EAF}";
echo $char;  // Output: 庯

Ruby:

char = "\u{5EAF}"
puts char  # Output: 庯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24239;</p>  <!-- Display: 庯 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EAF;</p>  <!-- Display: 庯 -->

URL Encoding:

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

Encodings

MD5:

bee52a410a30d884c209aa5dc9c49a66

SHA1:

e1641aeeaf6ad1fcd09827c577d53ad6bbbab9de

Base64:

5bqv