Unicode Finder

"廂" U+5EC2(CJK UNIFIED IDEOGRAPH-5EC2)

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

Programming

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

Web

CSS
\005EC2
HtmlDecimal
廂
HtmlHexadecimal
廂
Url
%E5%BB%82

Code

MD5
adc6b6f04f0f317df35f18e119f2b6d0
Sha1
74e1ccdcb5464de0734eb7b6ac626d6c49231208
Base64
5buC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC2';
console.log(char);  // Output: 廂

Java:

char c = '\u5EC2';
System.out.println(c);  // Output: 廂

JSON:

{"text": "\u5EC2"}  // Value: 廂

Python:

char = '\u5EC2'
print(char)  # Output: 廂

Perl:

my $char = "\x{5EC2}";
print $char;  # Output: 廂

PHP:

$char = "\x{5EC2}";
echo $char;  // Output: 廂

Ruby:

char = "\u{5EC2}"
puts char  # Output: 廂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24258;</p>  <!-- Display: 廂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC2;</p>  <!-- Display: 廂 -->

URL Encoding:

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

Encodings

MD5:

adc6b6f04f0f317df35f18e119f2b6d0

SHA1:

74e1ccdcb5464de0734eb7b6ac626d6c49231208

Base64:

5buC