Unicode Finder

"刧" U+5227(CJK UNIFIED IDEOGRAPH-5227)

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

Programming

C
\u5227
JavaScript
\u5227
Java
\u5227
Json
\u5227
Python
\u5227
Perl
\x{5227}
PHP
\x{5227}
Ruby
\u{5227}
Rust
\u{5227}
Go
\u5227

Web

CSS
\005227
HtmlDecimal
刧
HtmlHexadecimal
刧
Url
%E5%88%A7

Code

MD5
88ad3b0af33a5fa509ae111581fd1fa8
Sha1
64199300ca50ceee6d2992edd0fa8c5b57bd447f
Base64
5Yin

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5227';
console.log(char);  // Output: 刧

Java:

char c = '\u5227';
System.out.println(c);  // Output: 刧

JSON:

{"text": "\u5227"}  // Value: 刧

Python:

char = '\u5227'
print(char)  # Output: 刧

Perl:

my $char = "\x{5227}";
print $char;  # Output: 刧

PHP:

$char = "\x{5227}";
echo $char;  // Output: 刧

Ruby:

char = "\u{5227}"
puts char  # Output: 刧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005227";  /* Display: 刧 */
}

HTML Decimal:

<p>HTML decimal: &#21031;</p>  <!-- Display: 刧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5227;</p>  <!-- Display: 刧 -->

URL Encoding:

// 刧 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%A7

Encodings

MD5:

88ad3b0af33a5fa509ae111581fd1fa8

SHA1:

64199300ca50ceee6d2992edd0fa8c5b57bd447f

Base64:

5Yin