Unicode Finder

"廈" U+5EC8(CJK UNIFIED IDEOGRAPH-5EC8)

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

Programming

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

Web

CSS
\005EC8
HtmlDecimal
廈
HtmlHexadecimal
廈
Url
%E5%BB%88

Code

MD5
d971c9bd63c91edcba2df73bf074de58
Sha1
e3f89478201d5750a23bf553623dce179406831a
Base64
5buI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC8';
console.log(char);  // Output: 廈

Java:

char c = '\u5EC8';
System.out.println(c);  // Output: 廈

JSON:

{"text": "\u5EC8"}  // Value: 廈

Python:

char = '\u5EC8'
print(char)  # Output: 廈

Perl:

my $char = "\x{5EC8}";
print $char;  # Output: 廈

PHP:

$char = "\x{5EC8}";
echo $char;  // Output: 廈

Ruby:

char = "\u{5EC8}"
puts char  # Output: 廈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24264;</p>  <!-- Display: 廈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC8;</p>  <!-- Display: 廈 -->

URL Encoding:

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

Encodings

MD5:

d971c9bd63c91edcba2df73bf074de58

SHA1:

e3f89478201d5750a23bf553623dce179406831a

Base64:

5buI