Unicode Finder

"賍" U+8CCD(CJK UNIFIED IDEOGRAPH-8CCD)

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

Programming

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

Web

CSS
\008CCD
HtmlDecimal
賍
HtmlHexadecimal
賍
Url
%E8%B3%8D

Code

MD5
7e14af4d2b260c5df908b2f8f1f51fe1
Sha1
d8cd769d784b102d576d499724818b3ea5f53eee
Base64
6LON

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CCD';
console.log(char);  // Output: 賍

Java:

char c = '\u8CCD';
System.out.println(c);  // Output: 賍

JSON:

{"text": "\u8CCD"}  // Value: 賍

Python:

char = '\u8CCD'
print(char)  # Output: 賍

Perl:

my $char = "\x{8CCD}";
print $char;  # Output: 賍

PHP:

$char = "\x{8CCD}";
echo $char;  // Output: 賍

Ruby:

char = "\u{8CCD}"
puts char  # Output: 賍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36045;</p>  <!-- Display: 賍 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CCD;</p>  <!-- Display: 賍 -->

URL Encoding:

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

Encodings

MD5:

7e14af4d2b260c5df908b2f8f1f51fe1

SHA1:

d8cd769d784b102d576d499724818b3ea5f53eee

Base64:

6LON