Unicode Finder

"贖" U+8D16(CJK UNIFIED IDEOGRAPH-8D16)

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

Programming

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

Web

CSS
\008D16
HtmlDecimal
贖
HtmlHexadecimal
贖
Url
%E8%B4%96

Code

MD5
d8af1692bbc9c87049d0d6bd19f0401b
Sha1
ff2850da3eb5496ab63988c173558e0d2c4db65b
Base64
6LSW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D16';
console.log(char);  // Output: 贖

Java:

char c = '\u8D16';
System.out.println(c);  // Output: 贖

JSON:

{"text": "\u8D16"}  // Value: 贖

Python:

char = '\u8D16'
print(char)  # Output: 贖

Perl:

my $char = "\x{8D16}";
print $char;  # Output: 贖

PHP:

$char = "\x{8D16}";
echo $char;  // Output: 贖

Ruby:

char = "\u{8D16}"
puts char  # Output: 贖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36118;</p>  <!-- Display: 贖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D16;</p>  <!-- Display: 贖 -->

URL Encoding:

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

Encodings

MD5:

d8af1692bbc9c87049d0d6bd19f0401b

SHA1:

ff2850da3eb5496ab63988c173558e0d2c4db65b

Base64:

6LSW