Unicode Finder

"蜑" U+8711(CJK UNIFIED IDEOGRAPH-8711)

U+8711
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8711

Programming

C
\u8711
JavaScript
\u8711
Java
\u8711
Json
\u8711
Python
\u8711
Perl
\x{8711}
PHP
\x{8711}
Ruby
\u{8711}
Rust
\u{8711}
Go
\u8711

Web

CSS
\008711
HtmlDecimal
蜑
HtmlHexadecimal
蜑
Url
%E8%9C%91

Code

MD5
7ab5906ff5017c4db0425796850dc316
Sha1
65c0db5b0860076af4e4edb384478a522fc71a4a
Base64
6JyR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8711';
console.log(char);  // Output: 蜑

Java:

char c = '\u8711';
System.out.println(c);  // Output: 蜑

JSON:

{"text": "\u8711"}  // Value: 蜑

Python:

char = '\u8711'
print(char)  # Output: 蜑

Perl:

my $char = "\x{8711}";
print $char;  # Output: 蜑

PHP:

$char = "\x{8711}";
echo $char;  // Output: 蜑

Ruby:

char = "\u{8711}"
puts char  # Output: 蜑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008711";  /* Display: 蜑 */
}

HTML Decimal:

<p>HTML decimal: &#34577;</p>  <!-- Display: 蜑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8711;</p>  <!-- Display: 蜑 -->

URL Encoding:

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

Encodings

MD5:

7ab5906ff5017c4db0425796850dc316

SHA1:

65c0db5b0860076af4e4edb384478a522fc71a4a

Base64:

6JyR