Unicode Finder

"剬" U+526C(CJK UNIFIED IDEOGRAPH-526C)

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

Programming

C
\u526C
JavaScript
\u526C
Java
\u526C
Json
\u526C
Python
\u526C
Perl
\x{526C}
PHP
\x{526C}
Ruby
\u{526C}
Rust
\u{526C}
Go
\u526C

Web

CSS
\00526C
HtmlDecimal
剬
HtmlHexadecimal
剬
Url
%E5%89%AC

Code

MD5
e677fc2c82dfeebc8e5b540ee85c423f
Sha1
653fb4f93db74ad416b3e248afd50602d15dd82d
Base64
5Yms

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u526C';
console.log(char);  // Output: 剬

Java:

char c = '\u526C';
System.out.println(c);  // Output: 剬

JSON:

{"text": "\u526C"}  // Value: 剬

Python:

char = '\u526C'
print(char)  # Output: 剬

Perl:

my $char = "\x{526C}";
print $char;  # Output: 剬

PHP:

$char = "\x{526C}";
echo $char;  // Output: 剬

Ruby:

char = "\u{526C}"
puts char  # Output: 剬

Rust:

let c = '\u{526C}';
println!("{}", c);  // Output: 剬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00526C";  /* Display: 剬 */
}

HTML Decimal:

<p>HTML decimal: &#21100;</p>  <!-- Display: 剬 -->

HTML Hexadecimal:

<p>HTML hex: &#x526C;</p>  <!-- Display: 剬 -->

URL Encoding:

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

Encodings

MD5:

e677fc2c82dfeebc8e5b540ee85c423f

SHA1:

653fb4f93db74ad416b3e248afd50602d15dd82d

Base64:

5Yms