Unicode Finder

"刦" U+5226(CJK UNIFIED IDEOGRAPH-5226)

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

Programming

C
\u5226
JavaScript
\u5226
Java
\u5226
Json
\u5226
Python
\u5226
Perl
\x{5226}
PHP
\x{5226}
Ruby
\u{5226}
Rust
\u{5226}
Go
\u5226

Web

CSS
\005226
HtmlDecimal
刦
HtmlHexadecimal
刦
Url
%E5%88%A6

Code

MD5
5f5ef6c1b2338c40f8ad72c067f7ab83
Sha1
f53cb4059d0a7fd2d993133b3b3092bc2d3e662a
Base64
5Yim

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5226';
console.log(char);  // Output: 刦

Java:

char c = '\u5226';
System.out.println(c);  // Output: 刦

JSON:

{"text": "\u5226"}  // Value: 刦

Python:

char = '\u5226'
print(char)  # Output: 刦

Perl:

my $char = "\x{5226}";
print $char;  # Output: 刦

PHP:

$char = "\x{5226}";
echo $char;  // Output: 刦

Ruby:

char = "\u{5226}"
puts char  # Output: 刦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005226";  /* Display: 刦 */
}

HTML Decimal:

<p>HTML decimal: &#21030;</p>  <!-- Display: 刦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5226;</p>  <!-- Display: 刦 -->

URL Encoding:

// 刦 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%A6

Encodings

MD5:

5f5ef6c1b2338c40f8ad72c067f7ab83

SHA1:

f53cb4059d0a7fd2d993133b3b3092bc2d3e662a

Base64:

5Yim