Unicode Finder

"贿" U+8D3F(CJK UNIFIED IDEOGRAPH-8D3F)

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

Programming

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

Web

CSS
\008D3F
HtmlDecimal
贿
HtmlHexadecimal
贿
Url
%E8%B4%BF

Code

MD5
6fced12f49d4f614d52e7358603b51f1
Sha1
7ea3963672f262e1a1044a16afff126f446d6319
Base64
6LS/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D3F';
console.log(char);  // Output: 贿

Java:

char c = '\u8D3F';
System.out.println(c);  // Output: 贿

JSON:

{"text": "\u8D3F"}  // Value: 贿

Python:

char = '\u8D3F'
print(char)  # Output: 贿

Perl:

my $char = "\x{8D3F}";
print $char;  # Output: 贿

PHP:

$char = "\x{8D3F}";
echo $char;  // Output: 贿

Ruby:

char = "\u{8D3F}"
puts char  # Output: 贿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36159;</p>  <!-- Display: 贿 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D3F;</p>  <!-- Display: 贿 -->

URL Encoding:

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

Encodings

MD5:

6fced12f49d4f614d52e7358603b51f1

SHA1:

7ea3963672f262e1a1044a16afff126f446d6319

Base64:

6LS/