Unicode Finder

"邆" U+9086(CJK UNIFIED IDEOGRAPH-9086)

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

Programming

C
\u9086
JavaScript
\u9086
Java
\u9086
Json
\u9086
Python
\u9086
Perl
\x{9086}
PHP
\x{9086}
Ruby
\u{9086}
Rust
\u{9086}
Go
\u9086

Web

CSS
\009086
HtmlDecimal
邆
HtmlHexadecimal
邆
Url
%E9%82%86

Code

MD5
5d41bd955864e970db9dc510b7fe7840
Sha1
95617a4da147cd94ec8703cf89222111f803ad59
Base64
6YKG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9086';
console.log(char);  // Output: 邆

Java:

char c = '\u9086';
System.out.println(c);  // Output: 邆

JSON:

{"text": "\u9086"}  // Value: 邆

Python:

char = '\u9086'
print(char)  # Output: 邆

Perl:

my $char = "\x{9086}";
print $char;  # Output: 邆

PHP:

$char = "\x{9086}";
echo $char;  // Output: 邆

Ruby:

char = "\u{9086}"
puts char  # Output: 邆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009086";  /* Display: 邆 */
}

HTML Decimal:

<p>HTML decimal: &#36998;</p>  <!-- Display: 邆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9086;</p>  <!-- Display: 邆 -->

URL Encoding:

// 邆 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%86

Encodings

MD5:

5d41bd955864e970db9dc510b7fe7840

SHA1:

95617a4da147cd94ec8703cf89222111f803ad59

Base64:

6YKG