Unicode Finder

"賝" U+8CDD(CJK UNIFIED IDEOGRAPH-8CDD)

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

Programming

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

Web

CSS
\008CDD
HtmlDecimal
賝
HtmlHexadecimal
賝
Url
%E8%B3%9D

Code

MD5
cab46531376c4c9cbff514ab76744ddf
Sha1
f007ac3ca02bc451011da8ae5d9492ab2dc8df9d
Base64
6LOd

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CDD';
console.log(char);  // Output: 賝

Java:

char c = '\u8CDD';
System.out.println(c);  // Output: 賝

JSON:

{"text": "\u8CDD"}  // Value: 賝

Python:

char = '\u8CDD'
print(char)  # Output: 賝

Perl:

my $char = "\x{8CDD}";
print $char;  # Output: 賝

PHP:

$char = "\x{8CDD}";
echo $char;  // Output: 賝

Ruby:

char = "\u{8CDD}"
puts char  # Output: 賝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36061;</p>  <!-- Display: 賝 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CDD;</p>  <!-- Display: 賝 -->

URL Encoding:

// 賝 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%9D

Encodings

MD5:

cab46531376c4c9cbff514ab76744ddf

SHA1:

f007ac3ca02bc451011da8ae5d9492ab2dc8df9d

Base64:

6LOd