Unicode Finder

"叄" U+53C4(CJK UNIFIED IDEOGRAPH-53C4)

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

Programming

C
\u53C4
JavaScript
\u53C4
Java
\u53C4
Json
\u53C4
Python
\u53C4
Perl
\x{53C4}
PHP
\x{53C4}
Ruby
\u{53C4}
Rust
\u{53C4}
Go
\u53C4

Web

CSS
\0053C4
HtmlDecimal
叄
HtmlHexadecimal
叄
Url
%E5%8F%84

Code

MD5
28cf71c9046ea6176ce1e977c017f68b
Sha1
bf97d81f60f8eee5fbce06583c0f41f2c6582521
Base64
5Y+E

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u53C4';
console.log(char);  // Output: 叄

Java:

char c = '\u53C4';
System.out.println(c);  // Output: 叄

JSON:

{"text": "\u53C4"}  // Value: 叄

Python:

char = '\u53C4'
print(char)  # Output: 叄

Perl:

my $char = "\x{53C4}";
print $char;  # Output: 叄

PHP:

$char = "\x{53C4}";
echo $char;  // Output: 叄

Ruby:

char = "\u{53C4}"
puts char  # Output: 叄

Rust:

let c = '\u{53C4}';
println!("{}", c);  // Output: 叄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053C4";  /* Display: 叄 */
}

HTML Decimal:

<p>HTML decimal: &#21444;</p>  <!-- Display: 叄 -->

HTML Hexadecimal:

<p>HTML hex: &#x53C4;</p>  <!-- Display: 叄 -->

URL Encoding:

// 叄 URL encoding
https://unicodefinder.com/search.php?query=%E5%8F%84

Encodings

MD5:

28cf71c9046ea6176ce1e977c017f68b

SHA1:

bf97d81f60f8eee5fbce06583c0f41f2c6582521

Base64:

5Y+E