Unicode Finder

"廛" U+5EDB(CJK UNIFIED IDEOGRAPH-5EDB)

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

Programming

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

Web

CSS
\005EDB
HtmlDecimal
廛
HtmlHexadecimal
廛
Url
%E5%BB%9B

Code

MD5
2d20cce36e63d62ca4af0b780b5d3624
Sha1
574e7ce0cf46c7befcb5ac8e9f1694d2abd1dc02
Base64
5bub

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EDB';
console.log(char);  // Output: 廛

Java:

char c = '\u5EDB';
System.out.println(c);  // Output: 廛

JSON:

{"text": "\u5EDB"}  // Value: 廛

Python:

char = '\u5EDB'
print(char)  # Output: 廛

Perl:

my $char = "\x{5EDB}";
print $char;  # Output: 廛

PHP:

$char = "\x{5EDB}";
echo $char;  // Output: 廛

Ruby:

char = "\u{5EDB}"
puts char  # Output: 廛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24283;</p>  <!-- Display: 廛 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EDB;</p>  <!-- Display: 廛 -->

URL Encoding:

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

Encodings

MD5:

2d20cce36e63d62ca4af0b780b5d3624

SHA1:

574e7ce0cf46c7befcb5ac8e9f1694d2abd1dc02

Base64:

5bub