Unicode Finder

"刜" U+521C(CJK UNIFIED IDEOGRAPH-521C)

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

Programming

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

Web

CSS
\00521C
HtmlDecimal
刜
HtmlHexadecimal
刜
Url
%E5%88%9C

Code

MD5
15a1f312d778bd469b29a7e3d9afb7c3
Sha1
d9b328c98fa820277de399a1bded38add17c1827
Base64
5Yic

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u521C';
console.log(char);  // Output: 刜

Java:

char c = '\u521C';
System.out.println(c);  // Output: 刜

JSON:

{"text": "\u521C"}  // Value: 刜

Python:

char = '\u521C'
print(char)  # Output: 刜

Perl:

my $char = "\x{521C}";
print $char;  # Output: 刜

PHP:

$char = "\x{521C}";
echo $char;  // Output: 刜

Ruby:

char = "\u{521C}"
puts char  # Output: 刜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21020;</p>  <!-- Display: 刜 -->

HTML Hexadecimal:

<p>HTML hex: &#x521C;</p>  <!-- Display: 刜 -->

URL Encoding:

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

Encodings

MD5:

15a1f312d778bd469b29a7e3d9afb7c3

SHA1:

d9b328c98fa820277de399a1bded38add17c1827

Base64:

5Yic