Unicode Finder

"螆" U+8786(CJK UNIFIED IDEOGRAPH-8786)

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

Programming

C
\u8786
JavaScript
\u8786
Java
\u8786
Json
\u8786
Python
\u8786
Perl
\x{8786}
PHP
\x{8786}
Ruby
\u{8786}
Rust
\u{8786}
Go
\u8786

Web

CSS
\008786
HtmlDecimal
螆
HtmlHexadecimal
螆
Url
%E8%9E%86

Code

MD5
54eeb2996197098a82c21d3bd95f1a70
Sha1
0d2a5f71bce1d673e21c8483caf84227f001492f
Base64
6J6G

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8786';
console.log(char);  // Output: 螆

Java:

char c = '\u8786';
System.out.println(c);  // Output: 螆

JSON:

{"text": "\u8786"}  // Value: 螆

Python:

char = '\u8786'
print(char)  # Output: 螆

Perl:

my $char = "\x{8786}";
print $char;  # Output: 螆

PHP:

$char = "\x{8786}";
echo $char;  // Output: 螆

Ruby:

char = "\u{8786}"
puts char  # Output: 螆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008786";  /* Display: 螆 */
}

HTML Decimal:

<p>HTML decimal: &#34694;</p>  <!-- Display: 螆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8786;</p>  <!-- Display: 螆 -->

URL Encoding:

// 螆 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%86

Encodings

MD5:

54eeb2996197098a82c21d3bd95f1a70

SHA1:

0d2a5f71bce1d673e21c8483caf84227f001492f

Base64:

6J6G