Unicode Finder

"劑" U+5291(CJK UNIFIED IDEOGRAPH-5291)

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

Programming

C
\u5291
JavaScript
\u5291
Java
\u5291
Json
\u5291
Python
\u5291
Perl
\x{5291}
PHP
\x{5291}
Ruby
\u{5291}
Rust
\u{5291}
Go
\u5291

Web

CSS
\005291
HtmlDecimal
劑
HtmlHexadecimal
劑
Url
%E5%8A%91

Code

MD5
a268448fa45b9a54fb376536be2c6a72
Sha1
6ba5c708b0345e786f4db250ab8f853f2d3c9e41
Base64
5YqR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5291';
console.log(char);  // Output: 劑

Java:

char c = '\u5291';
System.out.println(c);  // Output: 劑

JSON:

{"text": "\u5291"}  // Value: 劑

Python:

char = '\u5291'
print(char)  # Output: 劑

Perl:

my $char = "\x{5291}";
print $char;  # Output: 劑

PHP:

$char = "\x{5291}";
echo $char;  // Output: 劑

Ruby:

char = "\u{5291}"
puts char  # Output: 劑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005291";  /* Display: 劑 */
}

HTML Decimal:

<p>HTML decimal: &#21137;</p>  <!-- Display: 劑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5291;</p>  <!-- Display: 劑 -->

URL Encoding:

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

Encodings

MD5:

a268448fa45b9a54fb376536be2c6a72

SHA1:

6ba5c708b0345e786f4db250ab8f853f2d3c9e41

Base64:

5YqR