Unicode Finder

"困" U+56F0(CJK UNIFIED IDEOGRAPH-56F0)

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

Programming

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

Web

CSS
\0056F0
HtmlDecimal
困
HtmlHexadecimal
困
Url
%E5%9B%B0

Code

MD5
dba64cc14e5ea5c02658eea88608af74
Sha1
ad5b9e62f29e6415b8b5634b54a53726c834af6c
Base64
5Zuw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56F0';
console.log(char);  // Output: 困

Java:

char c = '\u56F0';
System.out.println(c);  // Output: 困

JSON:

{"text": "\u56F0"}  // Value: 困

Python:

char = '\u56F0'
print(char)  # Output: 困

Perl:

my $char = "\x{56F0}";
print $char;  # Output: 困

PHP:

$char = "\x{56F0}";
echo $char;  // Output: 困

Ruby:

char = "\u{56F0}"
puts char  # Output: 困

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22256;</p>  <!-- Display: 困 -->

HTML Hexadecimal:

<p>HTML hex: &#x56F0;</p>  <!-- Display: 困 -->

URL Encoding:

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

Encodings

MD5:

dba64cc14e5ea5c02658eea88608af74

SHA1:

ad5b9e62f29e6415b8b5634b54a53726c834af6c

Base64:

5Zuw