Unicode Finder

"贌" U+8D0C(CJK UNIFIED IDEOGRAPH-8D0C)

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

Programming

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

Web

CSS
\008D0C
HtmlDecimal
贌
HtmlHexadecimal
贌
Url
%E8%B4%8C

Code

MD5
50462d60aae2d3086b72e8a0b2eb0dfd
Sha1
186fa122df77064b1bcca72a5d5d7ec2ca351089
Base64
6LSM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D0C';
console.log(char);  // Output: 贌

Java:

char c = '\u8D0C';
System.out.println(c);  // Output: 贌

JSON:

{"text": "\u8D0C"}  // Value: 贌

Python:

char = '\u8D0C'
print(char)  # Output: 贌

Perl:

my $char = "\x{8D0C}";
print $char;  # Output: 贌

PHP:

$char = "\x{8D0C}";
echo $char;  // Output: 贌

Ruby:

char = "\u{8D0C}"
puts char  # Output: 贌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36108;</p>  <!-- Display: 贌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D0C;</p>  <!-- Display: 贌 -->

URL Encoding:

// 贌 URL encoding
https://unicodefinder.com/search.php?query=%E8%B4%8C

Encodings

MD5:

50462d60aae2d3086b72e8a0b2eb0dfd

SHA1:

186fa122df77064b1bcca72a5d5d7ec2ca351089

Base64:

6LSM