Unicode Finder

"回" U+56DE(CJK UNIFIED IDEOGRAPH-56DE)

U+56DE
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-56DE

Programming

C
\u56DE
JavaScript
\u56DE
Java
\u56DE
Json
\u56DE
Python
\u56DE
Perl
\x{56DE}
PHP
\x{56DE}
Ruby
\u{56DE}
Rust
\u{56DE}
Go
\u56DE

Web

CSS
\0056DE
HtmlDecimal
回
HtmlHexadecimal
回
Url
%E5%9B%9E

Code

MD5
e0a113160c3a3708e23644a9f3ef3337
Sha1
5b722ab4152c046f9d7a9b075028537bfe537d1a
Base64
5Zue

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56DE';
console.log(char);  // Output: 回

Java:

char c = '\u56DE';
System.out.println(c);  // Output: 回

JSON:

{"text": "\u56DE"}  // Value: 回

Python:

char = '\u56DE'
print(char)  # Output: 回

Perl:

my $char = "\x{56DE}";
print $char;  # Output: 回

PHP:

$char = "\x{56DE}";
echo $char;  // Output: 回

Ruby:

char = "\u{56DE}"
puts char  # Output: 回

Rust:

let c = '\u{56DE}';
println!("{}", c);  // Output: 回

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056DE";  /* Display: 回 */
}

HTML Decimal:

<p>HTML decimal: &#22238;</p>  <!-- Display: 回 -->

HTML Hexadecimal:

<p>HTML hex: &#x56DE;</p>  <!-- Display: 回 -->

URL Encoding:

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

Encodings

MD5:

e0a113160c3a3708e23644a9f3ef3337

SHA1:

5b722ab4152c046f9d7a9b075028537bfe537d1a

Base64:

5Zue