Unicode Finder

"朑" U+6711(CJK UNIFIED IDEOGRAPH-6711)

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

Programming

C
\u6711
JavaScript
\u6711
Java
\u6711
Json
\u6711
Python
\u6711
Perl
\x{6711}
PHP
\x{6711}
Ruby
\u{6711}
Rust
\u{6711}
Go
\u6711

Web

CSS
\006711
HtmlDecimal
朑
HtmlHexadecimal
朑
Url
%E6%9C%91

Code

MD5
0a34deb55dfc783f8fe22b9851083723
Sha1
14a5d4bb649b962d9a2accf6050ffce31652aa09
Base64
5pyR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6711';
console.log(char);  // Output: 朑

Java:

char c = '\u6711';
System.out.println(c);  // Output: 朑

JSON:

{"text": "\u6711"}  // Value: 朑

Python:

char = '\u6711'
print(char)  # Output: 朑

Perl:

my $char = "\x{6711}";
print $char;  # Output: 朑

PHP:

$char = "\x{6711}";
echo $char;  // Output: 朑

Ruby:

char = "\u{6711}"
puts char  # Output: 朑

Rust:

let c = '\u{6711}';
println!("{}", c);  // Output: 朑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006711";  /* Display: 朑 */
}

HTML Decimal:

<p>HTML decimal: &#26385;</p>  <!-- Display: 朑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6711;</p>  <!-- Display: 朑 -->

URL Encoding:

// 朑 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%91

Encodings

MD5:

0a34deb55dfc783f8fe22b9851083723

SHA1:

14a5d4bb649b962d9a2accf6050ffce31652aa09

Base64:

5pyR