Unicode Finder

"庭" U+5EAD(CJK UNIFIED IDEOGRAPH-5EAD)

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

Programming

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

Web

CSS
\005EAD
HtmlDecimal
庭
HtmlHexadecimal
庭
Url
%E5%BA%AD

Code

MD5
5d033224739e902c9fc5d0e75ccbd083
Sha1
723b593b40eda4ca3ace6bb373bf4952e0204322
Base64
5bqt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EAD';
console.log(char);  // Output: 庭

Java:

char c = '\u5EAD';
System.out.println(c);  // Output: 庭

JSON:

{"text": "\u5EAD"}  // Value: 庭

Python:

char = '\u5EAD'
print(char)  # Output: 庭

Perl:

my $char = "\x{5EAD}";
print $char;  # Output: 庭

PHP:

$char = "\x{5EAD}";
echo $char;  // Output: 庭

Ruby:

char = "\u{5EAD}"
puts char  # Output: 庭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24237;</p>  <!-- Display: 庭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EAD;</p>  <!-- Display: 庭 -->

URL Encoding:

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

Encodings

MD5:

5d033224739e902c9fc5d0e75ccbd083

SHA1:

723b593b40eda4ca3ace6bb373bf4952e0204322

Base64:

5bqt