Unicode Finder

"贳" U+8D33(CJK UNIFIED IDEOGRAPH-8D33)

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

Programming

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

Web

CSS
\008D33
HtmlDecimal
贳
HtmlHexadecimal
贳
Url
%E8%B4%B3

Code

MD5
cb10199804dbc583e28d398c5cfb9228
Sha1
a12a2bfc14e6e81ac5713052fbe9858edfffd9dd
Base64
6LSz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D33';
console.log(char);  // Output: 贳

Java:

char c = '\u8D33';
System.out.println(c);  // Output: 贳

JSON:

{"text": "\u8D33"}  // Value: 贳

Python:

char = '\u8D33'
print(char)  # Output: 贳

Perl:

my $char = "\x{8D33}";
print $char;  # Output: 贳

PHP:

$char = "\x{8D33}";
echo $char;  // Output: 贳

Ruby:

char = "\u{8D33}"
puts char  # Output: 贳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36147;</p>  <!-- Display: 贳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D33;</p>  <!-- Display: 贳 -->

URL Encoding:

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

Encodings

MD5:

cb10199804dbc583e28d398c5cfb9228

SHA1:

a12a2bfc14e6e81ac5713052fbe9858edfffd9dd

Base64:

6LSz