Unicode Finder

"剢" U+5262(CJK UNIFIED IDEOGRAPH-5262)

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

Programming

C
\u5262
JavaScript
\u5262
Java
\u5262
Json
\u5262
Python
\u5262
Perl
\x{5262}
PHP
\x{5262}
Ruby
\u{5262}
Rust
\u{5262}
Go
\u5262

Web

CSS
\005262
HtmlDecimal
剢
HtmlHexadecimal
剢
Url
%E5%89%A2

Code

MD5
e602ebadf637ae499d4c8a6f79dd86ba
Sha1
28576cecff221e1a21759e4d9f7dcb5637317cea
Base64
5Ymi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5262';
console.log(char);  // Output: 剢

Java:

char c = '\u5262';
System.out.println(c);  // Output: 剢

JSON:

{"text": "\u5262"}  // Value: 剢

Python:

char = '\u5262'
print(char)  # Output: 剢

Perl:

my $char = "\x{5262}";
print $char;  # Output: 剢

PHP:

$char = "\x{5262}";
echo $char;  // Output: 剢

Ruby:

char = "\u{5262}"
puts char  # Output: 剢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005262";  /* Display: 剢 */
}

HTML Decimal:

<p>HTML decimal: &#21090;</p>  <!-- Display: 剢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5262;</p>  <!-- Display: 剢 -->

URL Encoding:

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

Encodings

MD5:

e602ebadf637ae499d4c8a6f79dd86ba

SHA1:

28576cecff221e1a21759e4d9f7dcb5637317cea

Base64:

5Ymi