Unicode Finder

"剦" U+5266(CJK UNIFIED IDEOGRAPH-5266)

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

Programming

C
\u5266
JavaScript
\u5266
Java
\u5266
Json
\u5266
Python
\u5266
Perl
\x{5266}
PHP
\x{5266}
Ruby
\u{5266}
Rust
\u{5266}
Go
\u5266

Web

CSS
\005266
HtmlDecimal
剦
HtmlHexadecimal
剦
Url
%E5%89%A6

Code

MD5
c5274fff92a42d527047d081b89d9061
Sha1
b06c77c0adefb935cb26ecd07881b38223cfb434
Base64
5Ymm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5266';
console.log(char);  // Output: 剦

Java:

char c = '\u5266';
System.out.println(c);  // Output: 剦

JSON:

{"text": "\u5266"}  // Value: 剦

Python:

char = '\u5266'
print(char)  # Output: 剦

Perl:

my $char = "\x{5266}";
print $char;  # Output: 剦

PHP:

$char = "\x{5266}";
echo $char;  // Output: 剦

Ruby:

char = "\u{5266}"
puts char  # Output: 剦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005266";  /* Display: 剦 */
}

HTML Decimal:

<p>HTML decimal: &#21094;</p>  <!-- Display: 剦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5266;</p>  <!-- Display: 剦 -->

URL Encoding:

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

Encodings

MD5:

c5274fff92a42d527047d081b89d9061

SHA1:

b06c77c0adefb935cb26ecd07881b38223cfb434

Base64:

5Ymm