Unicode Finder

"庁" U+5E81(CJK UNIFIED IDEOGRAPH-5E81)

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

Programming

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

Web

CSS
\005E81
HtmlDecimal
庁
HtmlHexadecimal
庁
Url
%E5%BA%81

Code

MD5
0b1456f00e380550c8784cb7ce2322d2
Sha1
cf9c274f30762e544f7d7b357c7b004912839f01
Base64
5bqB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E81';
console.log(char);  // Output: 庁

Java:

char c = '\u5E81';
System.out.println(c);  // Output: 庁

JSON:

{"text": "\u5E81"}  // Value: 庁

Python:

char = '\u5E81'
print(char)  # Output: 庁

Perl:

my $char = "\x{5E81}";
print $char;  # Output: 庁

PHP:

$char = "\x{5E81}";
echo $char;  // Output: 庁

Ruby:

char = "\u{5E81}"
puts char  # Output: 庁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24193;</p>  <!-- Display: 庁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E81;</p>  <!-- Display: 庁 -->

URL Encoding:

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

Encodings

MD5:

0b1456f00e380550c8784cb7ce2322d2

SHA1:

cf9c274f30762e544f7d7b357c7b004912839f01

Base64:

5bqB