Unicode Finder

"賨" U+8CE8(CJK UNIFIED IDEOGRAPH-8CE8)

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

Programming

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

Web

CSS
\008CE8
HtmlDecimal
賨
HtmlHexadecimal
賨
Url
%E8%B3%A8

Code

MD5
8786ecbe106280105892b00d133a91fc
Sha1
8871b067d7765b13aa6b49bb61fe167966a419fc
Base64
6LOo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CE8';
console.log(char);  // Output: 賨

Java:

char c = '\u8CE8';
System.out.println(c);  // Output: 賨

JSON:

{"text": "\u8CE8"}  // Value: 賨

Python:

char = '\u8CE8'
print(char)  # Output: 賨

Perl:

my $char = "\x{8CE8}";
print $char;  # Output: 賨

PHP:

$char = "\x{8CE8}";
echo $char;  // Output: 賨

Ruby:

char = "\u{8CE8}"
puts char  # Output: 賨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36072;</p>  <!-- Display: 賨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CE8;</p>  <!-- Display: 賨 -->

URL Encoding:

// 賨 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%A8

Encodings

MD5:

8786ecbe106280105892b00d133a91fc

SHA1:

8871b067d7765b13aa6b49bb61fe167966a419fc

Base64:

6LOo