Unicode Finder

"赃" U+8D43(CJK UNIFIED IDEOGRAPH-8D43)

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

Programming

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

Web

CSS
\008D43
HtmlDecimal
赃
HtmlHexadecimal
赃
Url
%E8%B5%83

Code

MD5
70333fbe17deae4918e7ef74c202e53c
Sha1
c1a21f68d11e8c1c42ea44b403116ec634d73e1f
Base64
6LWD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D43';
console.log(char);  // Output: 赃

Java:

char c = '\u8D43';
System.out.println(c);  // Output: 赃

JSON:

{"text": "\u8D43"}  // Value: 赃

Python:

char = '\u8D43'
print(char)  # Output: 赃

Perl:

my $char = "\x{8D43}";
print $char;  # Output: 赃

PHP:

$char = "\x{8D43}";
echo $char;  // Output: 赃

Ruby:

char = "\u{8D43}"
puts char  # Output: 赃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36163;</p>  <!-- Display: 赃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D43;</p>  <!-- Display: 赃 -->

URL Encoding:

// 赃 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%83

Encodings

MD5:

70333fbe17deae4918e7ef74c202e53c

SHA1:

c1a21f68d11e8c1c42ea44b403116ec634d73e1f

Base64:

6LWD