Unicode Finder

"剣" U+5263(CJK UNIFIED IDEOGRAPH-5263)

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

Programming

C
\u5263
JavaScript
\u5263
Java
\u5263
Json
\u5263
Python
\u5263
Perl
\x{5263}
PHP
\x{5263}
Ruby
\u{5263}
Rust
\u{5263}
Go
\u5263

Web

CSS
\005263
HtmlDecimal
剣
HtmlHexadecimal
剣
Url
%E5%89%A3

Code

MD5
5f8b0f80a51606cd8021d92e0f6c1e44
Sha1
8cc4957ea1c0fba2fc1e7908aa79bf6d96d025f5
Base64
5Ymj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5263';
console.log(char);  // Output: 剣

Java:

char c = '\u5263';
System.out.println(c);  // Output: 剣

JSON:

{"text": "\u5263"}  // Value: 剣

Python:

char = '\u5263'
print(char)  # Output: 剣

Perl:

my $char = "\x{5263}";
print $char;  # Output: 剣

PHP:

$char = "\x{5263}";
echo $char;  // Output: 剣

Ruby:

char = "\u{5263}"
puts char  # Output: 剣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005263";  /* Display: 剣 */
}

HTML Decimal:

<p>HTML decimal: &#21091;</p>  <!-- Display: 剣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5263;</p>  <!-- Display: 剣 -->

URL Encoding:

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

Encodings

MD5:

5f8b0f80a51606cd8021d92e0f6c1e44

SHA1:

8cc4957ea1c0fba2fc1e7908aa79bf6d96d025f5

Base64:

5Ymj