Unicode Finder

"趼" U+8DBC(CJK UNIFIED IDEOGRAPH-8DBC)

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

Programming

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

Web

CSS
\008DBC
HtmlDecimal
趼
HtmlHexadecimal
趼
Url
%E8%B6%BC

Code

MD5
728335a721e15c8f98aa3cc9af9073ec
Sha1
336926efa96eceeba7a1b005cddf5c1d914952c6
Base64
6La8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DBC';
console.log(char);  // Output: 趼

Java:

char c = '\u8DBC';
System.out.println(c);  // Output: 趼

JSON:

{"text": "\u8DBC"}  // Value: 趼

Python:

char = '\u8DBC'
print(char)  # Output: 趼

Perl:

my $char = "\x{8DBC}";
print $char;  # Output: 趼

PHP:

$char = "\x{8DBC}";
echo $char;  // Output: 趼

Ruby:

char = "\u{8DBC}"
puts char  # Output: 趼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36284;</p>  <!-- Display: 趼 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DBC;</p>  <!-- Display: 趼 -->

URL Encoding:

// 趼 URL encoding
https://unicodefinder.com/search.php?query=%E8%B6%BC

Encodings

MD5:

728335a721e15c8f98aa3cc9af9073ec

SHA1:

336926efa96eceeba7a1b005cddf5c1d914952c6

Base64:

6La8