Unicode Finder

"賫" U+8CEB(CJK UNIFIED IDEOGRAPH-8CEB)

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

Programming

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

Web

CSS
\008CEB
HtmlDecimal
賫
HtmlHexadecimal
賫
Url
%E8%B3%AB

Code

MD5
70499d87cd8ba894a72d4a7ff5cd0456
Sha1
dc780f1e983bff486c41eb32fc3cceca4fb445c7
Base64
6LOr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CEB';
console.log(char);  // Output: 賫

Java:

char c = '\u8CEB';
System.out.println(c);  // Output: 賫

JSON:

{"text": "\u8CEB"}  // Value: 賫

Python:

char = '\u8CEB'
print(char)  # Output: 賫

Perl:

my $char = "\x{8CEB}";
print $char;  # Output: 賫

PHP:

$char = "\x{8CEB}";
echo $char;  // Output: 賫

Ruby:

char = "\u{8CEB}"
puts char  # Output: 賫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36075;</p>  <!-- Display: 賫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CEB;</p>  <!-- Display: 賫 -->

URL Encoding:

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

Encodings

MD5:

70499d87cd8ba894a72d4a7ff5cd0456

SHA1:

dc780f1e983bff486c41eb32fc3cceca4fb445c7

Base64:

6LOr