Unicode Finder

"廎" U+5ECE(CJK UNIFIED IDEOGRAPH-5ECE)

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

Programming

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

Web

CSS
\005ECE
HtmlDecimal
廎
HtmlHexadecimal
廎
Url
%E5%BB%8E

Code

MD5
cf9e46a69df2af79f46d4ff71768f28c
Sha1
2e55704807b78a091e1504f81dae4a946faf55a0
Base64
5buO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5ECE';
console.log(char);  // Output: 廎

Java:

char c = '\u5ECE';
System.out.println(c);  // Output: 廎

JSON:

{"text": "\u5ECE"}  // Value: 廎

Python:

char = '\u5ECE'
print(char)  # Output: 廎

Perl:

my $char = "\x{5ECE}";
print $char;  # Output: 廎

PHP:

$char = "\x{5ECE}";
echo $char;  // Output: 廎

Ruby:

char = "\u{5ECE}"
puts char  # Output: 廎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24270;</p>  <!-- Display: 廎 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ECE;</p>  <!-- Display: 廎 -->

URL Encoding:

// 廎 URL encoding
https://unicodefinder.com/search.php?query=%E5%BB%8E

Encodings

MD5:

cf9e46a69df2af79f46d4ff71768f28c

SHA1:

2e55704807b78a091e1504f81dae4a946faf55a0

Base64:

5buO