Unicode Finder

"庅" U+5E85(CJK UNIFIED IDEOGRAPH-5E85)

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

Programming

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

Web

CSS
\005E85
HtmlDecimal
庅
HtmlHexadecimal
庅
Url
%E5%BA%85

Code

MD5
5bf708742880682f96d7babfed6be64a
Sha1
6b57cb4610d4d48608fadae94c845c99cea37630
Base64
5bqF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E85';
console.log(char);  // Output: 庅

Java:

char c = '\u5E85';
System.out.println(c);  // Output: 庅

JSON:

{"text": "\u5E85"}  // Value: 庅

Python:

char = '\u5E85'
print(char)  # Output: 庅

Perl:

my $char = "\x{5E85}";
print $char;  # Output: 庅

PHP:

$char = "\x{5E85}";
echo $char;  // Output: 庅

Ruby:

char = "\u{5E85}"
puts char  # Output: 庅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24197;</p>  <!-- Display: 庅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E85;</p>  <!-- Display: 庅 -->

URL Encoding:

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

Encodings

MD5:

5bf708742880682f96d7babfed6be64a

SHA1:

6b57cb4610d4d48608fadae94c845c99cea37630

Base64:

5bqF