Unicode Finder

"剀" U+5240(CJK UNIFIED IDEOGRAPH-5240)

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

Programming

C
\u5240
JavaScript
\u5240
Java
\u5240
Json
\u5240
Python
\u5240
Perl
\x{5240}
PHP
\x{5240}
Ruby
\u{5240}
Rust
\u{5240}
Go
\u5240

Web

CSS
\005240
HtmlDecimal
剀
HtmlHexadecimal
剀
Url
%E5%89%80

Code

MD5
8d49508eda5aed86f9a08598402512d5
Sha1
3774d52b8cde2c32066e747f2ae814e299f27007
Base64
5YmA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5240';
console.log(char);  // Output: 剀

Java:

char c = '\u5240';
System.out.println(c);  // Output: 剀

JSON:

{"text": "\u5240"}  // Value: 剀

Python:

char = '\u5240'
print(char)  # Output: 剀

Perl:

my $char = "\x{5240}";
print $char;  # Output: 剀

PHP:

$char = "\x{5240}";
echo $char;  // Output: 剀

Ruby:

char = "\u{5240}"
puts char  # Output: 剀

Rust:

let c = '\u{5240}';
println!("{}", c);  // Output: 剀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005240";  /* Display: 剀 */
}

HTML Decimal:

<p>HTML decimal: &#21056;</p>  <!-- Display: 剀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5240;</p>  <!-- Display: 剀 -->

URL Encoding:

// 剀 URL encoding
https://unicodefinder.com/search.php?query=%E5%89%80

Encodings

MD5:

8d49508eda5aed86f9a08598402512d5

SHA1:

3774d52b8cde2c32066e747f2ae814e299f27007

Base64:

5YmA