Unicode Finder

"廒" U+5ED2(CJK UNIFIED IDEOGRAPH-5ED2)

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

Programming

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

Web

CSS
\005ED2
HtmlDecimal
廒
HtmlHexadecimal
廒
Url
%E5%BB%92

Code

MD5
9da51da86dfc6f9a5d62a2887e966eb1
Sha1
ed9559811af7112732b54adc0b3532dbe808e25c
Base64
5buS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5ED2';
console.log(char);  // Output: 廒

Java:

char c = '\u5ED2';
System.out.println(c);  // Output: 廒

JSON:

{"text": "\u5ED2"}  // Value: 廒

Python:

char = '\u5ED2'
print(char)  # Output: 廒

Perl:

my $char = "\x{5ED2}";
print $char;  # Output: 廒

PHP:

$char = "\x{5ED2}";
echo $char;  // Output: 廒

Ruby:

char = "\u{5ED2}"
puts char  # Output: 廒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24274;</p>  <!-- Display: 廒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ED2;</p>  <!-- Display: 廒 -->

URL Encoding:

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

Encodings

MD5:

9da51da86dfc6f9a5d62a2887e966eb1

SHA1:

ed9559811af7112732b54adc0b3532dbe808e25c

Base64:

5buS