Unicode Finder

"廳" U+5EF3(CJK UNIFIED IDEOGRAPH-5EF3)

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

Programming

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

Web

CSS
\005EF3
HtmlDecimal
廳
HtmlHexadecimal
廳
Url
%E5%BB%B3

Code

MD5
19123cf844690d1606f328181e4c94dd
Sha1
d2886d5e254fd28ae3e5fdd3517ae89435e17f59
Base64
5buz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EF3';
console.log(char);  // Output: 廳

Java:

char c = '\u5EF3';
System.out.println(c);  // Output: 廳

JSON:

{"text": "\u5EF3"}  // Value: 廳

Python:

char = '\u5EF3'
print(char)  # Output: 廳

Perl:

my $char = "\x{5EF3}";
print $char;  # Output: 廳

PHP:

$char = "\x{5EF3}";
echo $char;  // Output: 廳

Ruby:

char = "\u{5EF3}"
puts char  # Output: 廳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24307;</p>  <!-- Display: 廳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EF3;</p>  <!-- Display: 廳 -->

URL Encoding:

// 廳 URL encoding
https://unicodefinder.com/search.php?query=%E5%BB%B3

Encodings

MD5:

19123cf844690d1606f328181e4c94dd

SHA1:

d2886d5e254fd28ae3e5fdd3517ae89435e17f59

Base64:

5buz