Unicode Finder

"赌" U+8D4C(CJK UNIFIED IDEOGRAPH-8D4C)

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

Programming

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

Web

CSS
\008D4C
HtmlDecimal
赌
HtmlHexadecimal
赌
Url
%E8%B5%8C

Code

MD5
95daae035b3624c5c87e9f2cb8a309c6
Sha1
e9a324893dfb47d6b846d26e13e1f8c44cab8130
Base64
6LWM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D4C';
console.log(char);  // Output: 赌

Java:

char c = '\u8D4C';
System.out.println(c);  // Output: 赌

JSON:

{"text": "\u8D4C"}  // Value: 赌

Python:

char = '\u8D4C'
print(char)  # Output: 赌

Perl:

my $char = "\x{8D4C}";
print $char;  # Output: 赌

PHP:

$char = "\x{8D4C}";
echo $char;  // Output: 赌

Ruby:

char = "\u{8D4C}"
puts char  # Output: 赌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36172;</p>  <!-- Display: 赌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D4C;</p>  <!-- Display: 赌 -->

URL Encoding:

// 赌 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%8C

Encodings

MD5:

95daae035b3624c5c87e9f2cb8a309c6

SHA1:

e9a324893dfb47d6b846d26e13e1f8c44cab8130

Base64:

6LWM