Unicode Finder

"贪" U+8D2A(CJK UNIFIED IDEOGRAPH-8D2A)

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

Programming

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

Web

CSS
\008D2A
HtmlDecimal
贪
HtmlHexadecimal
贪
Url
%E8%B4%AA

Code

MD5
f63b07e08418f644e7cad19570e72735
Sha1
f3bf8ead282cb4dc75683a56d5cc97b73039b321
Base64
6LSq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D2A';
console.log(char);  // Output: 贪

Java:

char c = '\u8D2A';
System.out.println(c);  // Output: 贪

JSON:

{"text": "\u8D2A"}  // Value: 贪

Python:

char = '\u8D2A'
print(char)  # Output: 贪

Perl:

my $char = "\x{8D2A}";
print $char;  # Output: 贪

PHP:

$char = "\x{8D2A}";
echo $char;  // Output: 贪

Ruby:

char = "\u{8D2A}"
puts char  # Output: 贪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36138;</p>  <!-- Display: 贪 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D2A;</p>  <!-- Display: 贪 -->

URL Encoding:

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

Encodings

MD5:

f63b07e08418f644e7cad19570e72735

SHA1:

f3bf8ead282cb4dc75683a56d5cc97b73039b321

Base64:

6LSq