Unicode Finder

"悆" U+6086(CJK UNIFIED IDEOGRAPH-6086)

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

Programming

C
\u6086
JavaScript
\u6086
Java
\u6086
Json
\u6086
Python
\u6086
Perl
\x{6086}
PHP
\x{6086}
Ruby
\u{6086}
Rust
\u{6086}
Go
\u6086

Web

CSS
\006086
HtmlDecimal
悆
HtmlHexadecimal
悆
Url
%E6%82%86

Code

MD5
afc5fbbc1fb3c3c7875c7866cef55f1c
Sha1
f1c7f8e1921922c9caf1c836179f63514c820ef8
Base64
5oKG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6086';
console.log(char);  // Output: 悆

Java:

char c = '\u6086';
System.out.println(c);  // Output: 悆

JSON:

{"text": "\u6086"}  // Value: 悆

Python:

char = '\u6086'
print(char)  # Output: 悆

Perl:

my $char = "\x{6086}";
print $char;  # Output: 悆

PHP:

$char = "\x{6086}";
echo $char;  // Output: 悆

Ruby:

char = "\u{6086}"
puts char  # Output: 悆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006086";  /* Display: 悆 */
}

HTML Decimal:

<p>HTML decimal: &#24710;</p>  <!-- Display: 悆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6086;</p>  <!-- Display: 悆 -->

URL Encoding:

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

Encodings

MD5:

afc5fbbc1fb3c3c7875c7866cef55f1c

SHA1:

f1c7f8e1921922c9caf1c836179f63514c820ef8

Base64:

5oKG