Unicode Finder

"剠" U+5260(CJK UNIFIED IDEOGRAPH-5260)

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

Programming

C
\u5260
JavaScript
\u5260
Java
\u5260
Json
\u5260
Python
\u5260
Perl
\x{5260}
PHP
\x{5260}
Ruby
\u{5260}
Rust
\u{5260}
Go
\u5260

Web

CSS
\005260
HtmlDecimal
剠
HtmlHexadecimal
剠
Url
%E5%89%A0

Code

MD5
d7dffc25ee254b48826b5d3605cdb68d
Sha1
89814ec664817376e3f5f66218712a835779f9c3
Base64
5Ymg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5260';
console.log(char);  // Output: 剠

Java:

char c = '\u5260';
System.out.println(c);  // Output: 剠

JSON:

{"text": "\u5260"}  // Value: 剠

Python:

char = '\u5260'
print(char)  # Output: 剠

Perl:

my $char = "\x{5260}";
print $char;  # Output: 剠

PHP:

$char = "\x{5260}";
echo $char;  // Output: 剠

Ruby:

char = "\u{5260}"
puts char  # Output: 剠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005260";  /* Display: 剠 */
}

HTML Decimal:

<p>HTML decimal: &#21088;</p>  <!-- Display: 剠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5260;</p>  <!-- Display: 剠 -->

URL Encoding:

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

Encodings

MD5:

d7dffc25ee254b48826b5d3605cdb68d

SHA1:

89814ec664817376e3f5f66218712a835779f9c3

Base64:

5Ymg