Unicode Finder

"廁" U+5EC1(CJK UNIFIED IDEOGRAPH-5EC1)

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

Programming

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

Web

CSS
\005EC1
HtmlDecimal
廁
HtmlHexadecimal
廁
Url
%E5%BB%81

Code

MD5
c37209b4b59756c3b2b2d55a6ae86e86
Sha1
a6ea378b226ff1d24d388314a80eb2550665aa0d
Base64
5buB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC1';
console.log(char);  // Output: 廁

Java:

char c = '\u5EC1';
System.out.println(c);  // Output: 廁

JSON:

{"text": "\u5EC1"}  // Value: 廁

Python:

char = '\u5EC1'
print(char)  # Output: 廁

Perl:

my $char = "\x{5EC1}";
print $char;  # Output: 廁

PHP:

$char = "\x{5EC1}";
echo $char;  // Output: 廁

Ruby:

char = "\u{5EC1}"
puts char  # Output: 廁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24257;</p>  <!-- Display: 廁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC1;</p>  <!-- Display: 廁 -->

URL Encoding:

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

Encodings

MD5:

c37209b4b59756c3b2b2d55a6ae86e86

SHA1:

a6ea378b226ff1d24d388314a80eb2550665aa0d

Base64:

5buB