Unicode Finder

"剆" U+5246(CJK UNIFIED IDEOGRAPH-5246)

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

Programming

C
\u5246
JavaScript
\u5246
Java
\u5246
Json
\u5246
Python
\u5246
Perl
\x{5246}
PHP
\x{5246}
Ruby
\u{5246}
Rust
\u{5246}
Go
\u5246

Web

CSS
\005246
HtmlDecimal
剆
HtmlHexadecimal
剆
Url
%E5%89%86

Code

MD5
c2104a3ce17896715397db75a44fa5fd
Sha1
a65c76ca36695fcb9bc27c802fd42a6570127c53
Base64
5YmG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5246';
console.log(char);  // Output: 剆

Java:

char c = '\u5246';
System.out.println(c);  // Output: 剆

JSON:

{"text": "\u5246"}  // Value: 剆

Python:

char = '\u5246'
print(char)  # Output: 剆

Perl:

my $char = "\x{5246}";
print $char;  # Output: 剆

PHP:

$char = "\x{5246}";
echo $char;  // Output: 剆

Ruby:

char = "\u{5246}"
puts char  # Output: 剆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005246";  /* Display: 剆 */
}

HTML Decimal:

<p>HTML decimal: &#21062;</p>  <!-- Display: 剆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5246;</p>  <!-- Display: 剆 -->

URL Encoding:

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

Encodings

MD5:

c2104a3ce17896715397db75a44fa5fd

SHA1:

a65c76ca36695fcb9bc27c802fd42a6570127c53

Base64:

5YmG