Unicode Finder

"剒" U+5252(CJK UNIFIED IDEOGRAPH-5252)

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

Programming

C
\u5252
JavaScript
\u5252
Java
\u5252
Json
\u5252
Python
\u5252
Perl
\x{5252}
PHP
\x{5252}
Ruby
\u{5252}
Rust
\u{5252}
Go
\u5252

Web

CSS
\005252
HtmlDecimal
剒
HtmlHexadecimal
剒
Url
%E5%89%92

Code

MD5
100a3350d72c83de0602747b4e276781
Sha1
ab2ad08ecc3043939983740401ae3473db3eeade
Base64
5YmS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5252';
console.log(char);  // Output: 剒

Java:

char c = '\u5252';
System.out.println(c);  // Output: 剒

JSON:

{"text": "\u5252"}  // Value: 剒

Python:

char = '\u5252'
print(char)  # Output: 剒

Perl:

my $char = "\x{5252}";
print $char;  # Output: 剒

PHP:

$char = "\x{5252}";
echo $char;  // Output: 剒

Ruby:

char = "\u{5252}"
puts char  # Output: 剒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005252";  /* Display: 剒 */
}

HTML Decimal:

<p>HTML decimal: &#21074;</p>  <!-- Display: 剒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5252;</p>  <!-- Display: 剒 -->

URL Encoding:

// 剒 URL encoding
https://unicodefinder.com/search.php?query=%E5%89%92

Encodings

MD5:

100a3350d72c83de0602747b4e276781

SHA1:

ab2ad08ecc3043939983740401ae3473db3eeade

Base64:

5YmS