Unicode Finder

"剖" U+5256(CJK UNIFIED IDEOGRAPH-5256)

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

Programming

C
\u5256
JavaScript
\u5256
Java
\u5256
Json
\u5256
Python
\u5256
Perl
\x{5256}
PHP
\x{5256}
Ruby
\u{5256}
Rust
\u{5256}
Go
\u5256

Web

CSS
\005256
HtmlDecimal
剖
HtmlHexadecimal
剖
Url
%E5%89%96

Code

MD5
76f605cf2d6606a9e6928bb9f4e8660b
Sha1
62691db02d857ecdb53a98e1e6fc604f007903d3
Base64
5YmW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5256';
console.log(char);  // Output: 剖

Java:

char c = '\u5256';
System.out.println(c);  // Output: 剖

JSON:

{"text": "\u5256"}  // Value: 剖

Python:

char = '\u5256'
print(char)  # Output: 剖

Perl:

my $char = "\x{5256}";
print $char;  # Output: 剖

PHP:

$char = "\x{5256}";
echo $char;  // Output: 剖

Ruby:

char = "\u{5256}"
puts char  # Output: 剖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005256";  /* Display: 剖 */
}

HTML Decimal:

<p>HTML decimal: &#21078;</p>  <!-- Display: 剖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5256;</p>  <!-- Display: 剖 -->

URL Encoding:

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

Encodings

MD5:

76f605cf2d6606a9e6928bb9f4e8660b

SHA1:

62691db02d857ecdb53a98e1e6fc604f007903d3

Base64:

5YmW