Unicode Finder

"鶆" U+9D86(CJK UNIFIED IDEOGRAPH-9D86)

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

Programming

C
\u9D86
JavaScript
\u9D86
Java
\u9D86
Json
\u9D86
Python
\u9D86
Perl
\x{9D86}
PHP
\x{9D86}
Ruby
\u{9D86}
Rust
\u{9D86}
Go
\u9D86

Web

CSS
\009D86
HtmlDecimal
鶆
HtmlHexadecimal
鶆
Url
%E9%B6%86

Code

MD5
55037799a0e2a3fc57d0e5973536bd11
Sha1
2d2f92d66685bb20ae0e0a35913011b7a1983e8e
Base64
6baG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D86';
console.log(char);  // Output: 鶆

Java:

char c = '\u9D86';
System.out.println(c);  // Output: 鶆

JSON:

{"text": "\u9D86"}  // Value: 鶆

Python:

char = '\u9D86'
print(char)  # Output: 鶆

Perl:

my $char = "\x{9D86}";
print $char;  # Output: 鶆

PHP:

$char = "\x{9D86}";
echo $char;  // Output: 鶆

Ruby:

char = "\u{9D86}"
puts char  # Output: 鶆

Rust:

let c = '\u{9D86}';
println!("{}", c);  // Output: 鶆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009D86";  /* Display: 鶆 */
}

HTML Decimal:

<p>HTML decimal: &#40326;</p>  <!-- Display: 鶆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D86;</p>  <!-- Display: 鶆 -->

URL Encoding:

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

Encodings

MD5:

55037799a0e2a3fc57d0e5973536bd11

SHA1:

2d2f92d66685bb20ae0e0a35913011b7a1983e8e

Base64:

6baG