Unicode Finder

"展" U+5C55(CJK UNIFIED IDEOGRAPH-5C55)

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

Programming

C
\u5C55
JavaScript
\u5C55
Java
\u5C55
Json
\u5C55
Python
\u5C55
Perl
\x{5C55}
PHP
\x{5C55}
Ruby
\u{5C55}
Rust
\u{5C55}
Go
\u5C55

Web

CSS
\005C55
HtmlDecimal
展
HtmlHexadecimal
展
Url
%E5%B1%95

Code

MD5
272c321ef8a6ad9e732fc10ef1c0e2f9
Sha1
4918c19fbc40086762e49edbdab619ebbc26fbfc
Base64
5bGV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C55';
console.log(char);  // Output: 展

Java:

char c = '\u5C55';
System.out.println(c);  // Output: 展

JSON:

{"text": "\u5C55"}  // Value: 展

Python:

char = '\u5C55'
print(char)  # Output: 展

Perl:

my $char = "\x{5C55}";
print $char;  # Output: 展

PHP:

$char = "\x{5C55}";
echo $char;  // Output: 展

Ruby:

char = "\u{5C55}"
puts char  # Output: 展

Rust:

let c = '\u{5C55}';
println!("{}", c);  // Output: 展

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C55";  /* Display: 展 */
}

HTML Decimal:

<p>HTML decimal: &#23637;</p>  <!-- Display: 展 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C55;</p>  <!-- Display: 展 -->

URL Encoding:

// 展 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%95

Encodings

MD5:

272c321ef8a6ad9e732fc10ef1c0e2f9

SHA1:

4918c19fbc40086762e49edbdab619ebbc26fbfc

Base64:

5bGV