Unicode Finder

"刌" U+520C(CJK UNIFIED IDEOGRAPH-520C)

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

Programming

C
\u520C
JavaScript
\u520C
Java
\u520C
Json
\u520C
Python
\u520C
Perl
\x{520C}
PHP
\x{520C}
Ruby
\u{520C}
Rust
\u{520C}
Go
\u520C

Web

CSS
\00520C
HtmlDecimal
刌
HtmlHexadecimal
刌
Url
%E5%88%8C

Code

MD5
8f4059eb17a6c00ef468e0b99fb74436
Sha1
8262b179b3526ec86e7234c5efb5877ceaa89a35
Base64
5YiM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u520C';
console.log(char);  // Output: 刌

Java:

char c = '\u520C';
System.out.println(c);  // Output: 刌

JSON:

{"text": "\u520C"}  // Value: 刌

Python:

char = '\u520C'
print(char)  # Output: 刌

Perl:

my $char = "\x{520C}";
print $char;  # Output: 刌

PHP:

$char = "\x{520C}";
echo $char;  // Output: 刌

Ruby:

char = "\u{520C}"
puts char  # Output: 刌

Rust:

let c = '\u{520C}';
println!("{}", c);  // Output: 刌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00520C";  /* Display: 刌 */
}

HTML Decimal:

<p>HTML decimal: &#21004;</p>  <!-- Display: 刌 -->

HTML Hexadecimal:

<p>HTML hex: &#x520C;</p>  <!-- Display: 刌 -->

URL Encoding:

// 刌 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%8C

Encodings

MD5:

8f4059eb17a6c00ef468e0b99fb74436

SHA1:

8262b179b3526ec86e7234c5efb5877ceaa89a35

Base64:

5YiM