Unicode Finder

"赖" U+8D56(CJK UNIFIED IDEOGRAPH-8D56)

U+8D56
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8D56

Programming

C
\u8D56
JavaScript
\u8D56
Java
\u8D56
Json
\u8D56
Python
\u8D56
Perl
\x{8D56}
PHP
\x{8D56}
Ruby
\u{8D56}
Rust
\u{8D56}
Go
\u8D56

Web

CSS
\008D56
HtmlDecimal
赖
HtmlHexadecimal
赖
Url
%E8%B5%96

Code

MD5
c8f0027091a418e2b050f8972a6030cd
Sha1
572fb9a5fc65ca587f8671e7f7e84c43a5c98893
Base64
6LWW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8D56';
console.log(char);  // Output: 赖

Java:

char c = '\u8D56';
System.out.println(c);  // Output: 赖

JSON:

{"text": "\u8D56"}  // Value: 赖

Python:

char = '\u8D56'
print(char)  # Output: 赖

Perl:

my $char = "\x{8D56}";
print $char;  # Output: 赖

PHP:

$char = "\x{8D56}";
echo $char;  // Output: 赖

Ruby:

char = "\u{8D56}"
puts char  # Output: 赖

Rust:

let c = '\u{8D56}';
println!("{}", c);  // Output: 赖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008D56";  /* Display: 赖 */
}

HTML Decimal:

<p>HTML decimal: &#36182;</p>  <!-- Display: 赖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D56;</p>  <!-- Display: 赖 -->

URL Encoding:

// 赖 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%96

Encodings

MD5:

c8f0027091a418e2b050f8972a6030cd

SHA1:

572fb9a5fc65ca587f8671e7f7e84c43a5c98893

Base64:

6LWW