Unicode Finder

"刟" U+521F(CJK UNIFIED IDEOGRAPH-521F)

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

Programming

C
\u521F
JavaScript
\u521F
Java
\u521F
Json
\u521F
Python
\u521F
Perl
\x{521F}
PHP
\x{521F}
Ruby
\u{521F}
Rust
\u{521F}
Go
\u521F

Web

CSS
\00521F
HtmlDecimal
刟
HtmlHexadecimal
刟
Url
%E5%88%9F

Code

MD5
f9c1bca2508c2aad949227b2d72dc652
Sha1
ddb6b9a86e63dfbca56ec4e686cf229a4edf0413
Base64
5Yif

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u521F';
console.log(char);  // Output: 刟

Java:

char c = '\u521F';
System.out.println(c);  // Output: 刟

JSON:

{"text": "\u521F"}  // Value: 刟

Python:

char = '\u521F'
print(char)  # Output: 刟

Perl:

my $char = "\x{521F}";
print $char;  # Output: 刟

PHP:

$char = "\x{521F}";
echo $char;  // Output: 刟

Ruby:

char = "\u{521F}"
puts char  # Output: 刟

Rust:

let c = '\u{521F}';
println!("{}", c);  // Output: 刟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00521F";  /* Display: 刟 */
}

HTML Decimal:

<p>HTML decimal: &#21023;</p>  <!-- Display: 刟 -->

HTML Hexadecimal:

<p>HTML hex: &#x521F;</p>  <!-- Display: 刟 -->

URL Encoding:

// 刟 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%9F

Encodings

MD5:

f9c1bca2508c2aad949227b2d72dc652

SHA1:

ddb6b9a86e63dfbca56ec4e686cf229a4edf0413

Base64:

5Yif