Unicode Finder

"鶅" U+9D85(CJK UNIFIED IDEOGRAPH-9D85)

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

Programming

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

Web

CSS
\009D85
HtmlDecimal
鶅
HtmlHexadecimal
鶅
Url
%E9%B6%85

Code

MD5
c8cc9f12279b2b31d8a54850b7d68578
Sha1
346fbae896caa17f70b97ae4a618613369b84d69
Base64
6baF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D85';
console.log(char);  // Output: 鶅

Java:

char c = '\u9D85';
System.out.println(c);  // Output: 鶅

JSON:

{"text": "\u9D85"}  // Value: 鶅

Python:

char = '\u9D85'
print(char)  # Output: 鶅

Perl:

my $char = "\x{9D85}";
print $char;  # Output: 鶅

PHP:

$char = "\x{9D85}";
echo $char;  // Output: 鶅

Ruby:

char = "\u{9D85}"
puts char  # Output: 鶅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40325;</p>  <!-- Display: 鶅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D85;</p>  <!-- Display: 鶅 -->

URL Encoding:

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

Encodings

MD5:

c8cc9f12279b2b31d8a54850b7d68578

SHA1:

346fbae896caa17f70b97ae4a618613369b84d69

Base64:

6baF