Unicode Finder

"劇" U+5287(CJK UNIFIED IDEOGRAPH-5287)

U+5287
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5287

Programming

C
\u5287
JavaScript
\u5287
Java
\u5287
Json
\u5287
Python
\u5287
Perl
\x{5287}
PHP
\x{5287}
Ruby
\u{5287}
Rust
\u{5287}
Go
\u5287

Web

CSS
\005287
HtmlDecimal
劇
HtmlHexadecimal
劇
Url
%E5%8A%87

Code

MD5
ed6af9af17f40bceef187c17b2b043d7
Sha1
cf18c242752bd0d483c97f14d0d42727fc564bf4
Base64
5YqH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5287';
console.log(char);  // Output: 劇

Java:

char c = '\u5287';
System.out.println(c);  // Output: 劇

JSON:

{"text": "\u5287"}  // Value: 劇

Python:

char = '\u5287'
print(char)  # Output: 劇

Perl:

my $char = "\x{5287}";
print $char;  # Output: 劇

PHP:

$char = "\x{5287}";
echo $char;  // Output: 劇

Ruby:

char = "\u{5287}"
puts char  # Output: 劇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005287";  /* Display: 劇 */
}

HTML Decimal:

<p>HTML decimal: &#21127;</p>  <!-- Display: 劇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5287;</p>  <!-- Display: 劇 -->

URL Encoding:

// 劇 URL encoding
https://unicodefinder.com/search.php?query=%E5%8A%87

Encodings

MD5:

ed6af9af17f40bceef187c17b2b043d7

SHA1:

cf18c242752bd0d483c97f14d0d42727fc564bf4

Base64:

5YqH