Unicode Finder

"劆" U+5286(CJK UNIFIED IDEOGRAPH-5286)

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

Programming

C
\u5286
JavaScript
\u5286
Java
\u5286
Json
\u5286
Python
\u5286
Perl
\x{5286}
PHP
\x{5286}
Ruby
\u{5286}
Rust
\u{5286}
Go
\u5286

Web

CSS
\005286
HtmlDecimal
劆
HtmlHexadecimal
劆
Url
%E5%8A%86

Code

MD5
da4db507e4e8b7337c813554dab2462f
Sha1
f228fa57e6ede32066f58d88c39f170d9807dd1f
Base64
5YqG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5286';
console.log(char);  // Output: 劆

Java:

char c = '\u5286';
System.out.println(c);  // Output: 劆

JSON:

{"text": "\u5286"}  // Value: 劆

Python:

char = '\u5286'
print(char)  # Output: 劆

Perl:

my $char = "\x{5286}";
print $char;  # Output: 劆

PHP:

$char = "\x{5286}";
echo $char;  // Output: 劆

Ruby:

char = "\u{5286}"
puts char  # Output: 劆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005286";  /* Display: 劆 */
}

HTML Decimal:

<p>HTML decimal: &#21126;</p>  <!-- Display: 劆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5286;</p>  <!-- Display: 劆 -->

URL Encoding:

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

Encodings

MD5:

da4db507e4e8b7337c813554dab2462f

SHA1:

f228fa57e6ede32066f58d88c39f170d9807dd1f

Base64:

5YqG