Unicode Finder

"贓" U+8D13(CJK UNIFIED IDEOGRAPH-8D13)

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

Programming

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

Web

CSS
\008D13
HtmlDecimal
贓
HtmlHexadecimal
贓
Url
%E8%B4%93

Code

MD5
a5f9f73a00c554b7f840741ee40adb1b
Sha1
f8217d0858d3d86928dbf4bed2278532bc32cca5
Base64
6LST

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D13';
console.log(char);  // Output: 贓

Java:

char c = '\u8D13';
System.out.println(c);  // Output: 贓

JSON:

{"text": "\u8D13"}  // Value: 贓

Python:

char = '\u8D13'
print(char)  # Output: 贓

Perl:

my $char = "\x{8D13}";
print $char;  # Output: 贓

PHP:

$char = "\x{8D13}";
echo $char;  // Output: 贓

Ruby:

char = "\u{8D13}"
puts char  # Output: 贓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36115;</p>  <!-- Display: 贓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D13;</p>  <!-- Display: 贓 -->

URL Encoding:

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

Encodings

MD5:

a5f9f73a00c554b7f840741ee40adb1b

SHA1:

f8217d0858d3d86928dbf4bed2278532bc32cca5

Base64:

6LST