Unicode Finder

"巭" U+5DED(CJK UNIFIED IDEOGRAPH-5DED)

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

Programming

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

Web

CSS
\005DED
HtmlDecimal
巭
HtmlHexadecimal
巭
Url
%E5%B7%AD

Code

MD5
521dd022ff9d03fce54b1474f2072f91
Sha1
672c3d70fc9e31126d725b7e0a861febebf6c46f
Base64
5bet

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DED';
console.log(char);  // Output: 巭

Java:

char c = '\u5DED';
System.out.println(c);  // Output: 巭

JSON:

{"text": "\u5DED"}  // Value: 巭

Python:

char = '\u5DED'
print(char)  # Output: 巭

Perl:

my $char = "\x{5DED}";
print $char;  # Output: 巭

PHP:

$char = "\x{5DED}";
echo $char;  // Output: 巭

Ruby:

char = "\u{5DED}"
puts char  # Output: 巭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24045;</p>  <!-- Display: 巭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DED;</p>  <!-- Display: 巭 -->

URL Encoding:

// 巭 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%AD

Encodings

MD5:

521dd022ff9d03fce54b1474f2072f91

SHA1:

672c3d70fc9e31126d725b7e0a861febebf6c46f

Base64:

5bet