Unicode Finder

"劫" U+52AB(CJK UNIFIED IDEOGRAPH-52AB)

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

Programming

C
\u52AB
JavaScript
\u52AB
Java
\u52AB
Json
\u52AB
Python
\u52AB
Perl
\x{52AB}
PHP
\x{52AB}
Ruby
\u{52AB}
Rust
\u{52AB}
Go
\u52AB

Web

CSS
\0052AB
HtmlDecimal
劫
HtmlHexadecimal
劫
Url
%E5%8A%AB

Code

MD5
1fa4447f52587f0dc4c9c7750ed008c4
Sha1
c2b548a455b64f66971731894fbebea3bca3f315
Base64
5Yqr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52AB';
console.log(char);  // Output: 劫

Java:

char c = '\u52AB';
System.out.println(c);  // Output: 劫

JSON:

{"text": "\u52AB"}  // Value: 劫

Python:

char = '\u52AB'
print(char)  # Output: 劫

Perl:

my $char = "\x{52AB}";
print $char;  # Output: 劫

PHP:

$char = "\x{52AB}";
echo $char;  // Output: 劫

Ruby:

char = "\u{52AB}"
puts char  # Output: 劫

Rust:

let c = '\u{52AB}';
println!("{}", c);  // Output: 劫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0052AB";  /* Display: 劫 */
}

HTML Decimal:

<p>HTML decimal: &#21163;</p>  <!-- Display: 劫 -->

HTML Hexadecimal:

<p>HTML hex: &#x52AB;</p>  <!-- Display: 劫 -->

URL Encoding:

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

Encodings

MD5:

1fa4447f52587f0dc4c9c7750ed008c4

SHA1:

c2b548a455b64f66971731894fbebea3bca3f315

Base64:

5Yqr