Unicode Finder

"剙" U+5259(CJK UNIFIED IDEOGRAPH-5259)

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

Programming

C
\u5259
JavaScript
\u5259
Java
\u5259
Json
\u5259
Python
\u5259
Perl
\x{5259}
PHP
\x{5259}
Ruby
\u{5259}
Rust
\u{5259}
Go
\u5259

Web

CSS
\005259
HtmlDecimal
剙
HtmlHexadecimal
剙
Url
%E5%89%99

Code

MD5
4e790f6c492cedbe9fa156142471aa1e
Sha1
ed0ba7ab4574b6f340a1f3c29b3ec8e8bda7612a
Base64
5YmZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5259';
console.log(char);  // Output: 剙

Java:

char c = '\u5259';
System.out.println(c);  // Output: 剙

JSON:

{"text": "\u5259"}  // Value: 剙

Python:

char = '\u5259'
print(char)  # Output: 剙

Perl:

my $char = "\x{5259}";
print $char;  # Output: 剙

PHP:

$char = "\x{5259}";
echo $char;  // Output: 剙

Ruby:

char = "\u{5259}"
puts char  # Output: 剙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005259";  /* Display: 剙 */
}

HTML Decimal:

<p>HTML decimal: &#21081;</p>  <!-- Display: 剙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5259;</p>  <!-- Display: 剙 -->

URL Encoding:

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

Encodings

MD5:

4e790f6c492cedbe9fa156142471aa1e

SHA1:

ed0ba7ab4574b6f340a1f3c29b3ec8e8bda7612a

Base64:

5YmZ