Unicode Finder

"劐" U+5290(CJK UNIFIED IDEOGRAPH-5290)

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

Programming

C
\u5290
JavaScript
\u5290
Java
\u5290
Json
\u5290
Python
\u5290
Perl
\x{5290}
PHP
\x{5290}
Ruby
\u{5290}
Rust
\u{5290}
Go
\u5290

Web

CSS
\005290
HtmlDecimal
劐
HtmlHexadecimal
劐
Url
%E5%8A%90

Code

MD5
728229a1a5e9df45a3b6f7074806e4fd
Sha1
4b28493fa9a0d9d6438897a7be579ca89fc96ce5
Base64
5YqQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5290';
console.log(char);  // Output: 劐

Java:

char c = '\u5290';
System.out.println(c);  // Output: 劐

JSON:

{"text": "\u5290"}  // Value: 劐

Python:

char = '\u5290'
print(char)  # Output: 劐

Perl:

my $char = "\x{5290}";
print $char;  # Output: 劐

PHP:

$char = "\x{5290}";
echo $char;  // Output: 劐

Ruby:

char = "\u{5290}"
puts char  # Output: 劐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005290";  /* Display: 劐 */
}

HTML Decimal:

<p>HTML decimal: &#21136;</p>  <!-- Display: 劐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5290;</p>  <!-- Display: 劐 -->

URL Encoding:

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

Encodings

MD5:

728229a1a5e9df45a3b6f7074806e4fd

SHA1:

4b28493fa9a0d9d6438897a7be579ca89fc96ce5

Base64:

5YqQ