Unicode Finder

"剧" U+5267(CJK UNIFIED IDEOGRAPH-5267)

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

Programming

C
\u5267
JavaScript
\u5267
Java
\u5267
Json
\u5267
Python
\u5267
Perl
\x{5267}
PHP
\x{5267}
Ruby
\u{5267}
Rust
\u{5267}
Go
\u5267

Web

CSS
\005267
HtmlDecimal
剧
HtmlHexadecimal
剧
Url
%E5%89%A7

Code

MD5
78b2c4f6a405be2e9bf26d97055d4660
Sha1
24caf3b55064894d0c1510d69857bff6f15446e9
Base64
5Ymn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5267';
console.log(char);  // Output: 剧

Java:

char c = '\u5267';
System.out.println(c);  // Output: 剧

JSON:

{"text": "\u5267"}  // Value: 剧

Python:

char = '\u5267'
print(char)  # Output: 剧

Perl:

my $char = "\x{5267}";
print $char;  # Output: 剧

PHP:

$char = "\x{5267}";
echo $char;  // Output: 剧

Ruby:

char = "\u{5267}"
puts char  # Output: 剧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005267";  /* Display: 剧 */
}

HTML Decimal:

<p>HTML decimal: &#21095;</p>  <!-- Display: 剧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5267;</p>  <!-- Display: 剧 -->

URL Encoding:

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

Encodings

MD5:

78b2c4f6a405be2e9bf26d97055d4660

SHA1:

24caf3b55064894d0c1510d69857bff6f15446e9

Base64:

5Ymn