Unicode Finder

"单" U+5355(CJK UNIFIED IDEOGRAPH-5355)

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

Programming

C
\u5355
JavaScript
\u5355
Java
\u5355
Json
\u5355
Python
\u5355
Perl
\x{5355}
PHP
\x{5355}
Ruby
\u{5355}
Rust
\u{5355}
Go
\u5355

Web

CSS
\005355
HtmlDecimal
单
HtmlHexadecimal
单
Url
%E5%8D%95

Code

MD5
83958d46e85408edb8c962d90610851b
Sha1
a894792c7eb521e9ed2e28421bdfc37adfd4db52
Base64
5Y2V

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5355';
console.log(char);  // Output: 单

Java:

char c = '\u5355';
System.out.println(c);  // Output: 单

JSON:

{"text": "\u5355"}  // Value: 单

Python:

char = '\u5355'
print(char)  # Output: 单

Perl:

my $char = "\x{5355}";
print $char;  # Output: 单

PHP:

$char = "\x{5355}";
echo $char;  // Output: 单

Ruby:

char = "\u{5355}"
puts char  # Output: 单

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005355";  /* Display: 单 */
}

HTML Decimal:

<p>HTML decimal: &#21333;</p>  <!-- Display: 单 -->

HTML Hexadecimal:

<p>HTML hex: &#x5355;</p>  <!-- Display: 单 -->

URL Encoding:

// 单 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%95

Encodings

MD5:

83958d46e85408edb8c962d90610851b

SHA1:

a894792c7eb521e9ed2e28421bdfc37adfd4db52

Base64:

5Y2V