Unicode Finder

"廞" U+5EDE(CJK UNIFIED IDEOGRAPH-5EDE)

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

Programming

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

Web

CSS
\005EDE
HtmlDecimal
廞
HtmlHexadecimal
廞
Url
%E5%BB%9E

Code

MD5
71c95f46fb873262f729a5c4f9a5143f
Sha1
00f93d86fc22b4f72203dd6932ae2d887024d4bf
Base64
5bue

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EDE';
console.log(char);  // Output: 廞

Java:

char c = '\u5EDE';
System.out.println(c);  // Output: 廞

JSON:

{"text": "\u5EDE"}  // Value: 廞

Python:

char = '\u5EDE'
print(char)  # Output: 廞

Perl:

my $char = "\x{5EDE}";
print $char;  # Output: 廞

PHP:

$char = "\x{5EDE}";
echo $char;  // Output: 廞

Ruby:

char = "\u{5EDE}"
puts char  # Output: 廞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24286;</p>  <!-- Display: 廞 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EDE;</p>  <!-- Display: 廞 -->

URL Encoding:

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

Encodings

MD5:

71c95f46fb873262f729a5c4f9a5143f

SHA1:

00f93d86fc22b4f72203dd6932ae2d887024d4bf

Base64:

5bue