Unicode Finder

"趌" U+8D8C(CJK UNIFIED IDEOGRAPH-8D8C)

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

Programming

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

Web

CSS
\008D8C
HtmlDecimal
趌
HtmlHexadecimal
趌
Url
%E8%B6%8C

Code

MD5
5b873bbb4d7e3d4595e59300ebce4a4f
Sha1
c20e93889b24904ccc481c240844a748f630d4ac
Base64
6LaM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D8C';
console.log(char);  // Output: 趌

Java:

char c = '\u8D8C';
System.out.println(c);  // Output: 趌

JSON:

{"text": "\u8D8C"}  // Value: 趌

Python:

char = '\u8D8C'
print(char)  # Output: 趌

Perl:

my $char = "\x{8D8C}";
print $char;  # Output: 趌

PHP:

$char = "\x{8D8C}";
echo $char;  // Output: 趌

Ruby:

char = "\u{8D8C}"
puts char  # Output: 趌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36236;</p>  <!-- Display: 趌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D8C;</p>  <!-- Display: 趌 -->

URL Encoding:

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

Encodings

MD5:

5b873bbb4d7e3d4595e59300ebce4a4f

SHA1:

c20e93889b24904ccc481c240844a748f630d4ac

Base64:

6LaM