Unicode Finder

"鷧" U+9DE7(CJK UNIFIED IDEOGRAPH-9DE7)

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

Programming

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

Web

CSS
\009DE7
HtmlDecimal
鷧
HtmlHexadecimal
鷧
Url
%E9%B7%A7

Code

MD5
d8d08a899d33328635132c6d0cce1d34
Sha1
394613e7e6e6c22c483792d44feaf80edb3047d3
Base64
6ben

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9DE7';
console.log(char);  // Output: 鷧

Java:

char c = '\u9DE7';
System.out.println(c);  // Output: 鷧

JSON:

{"text": "\u9DE7"}  // Value: 鷧

Python:

char = '\u9DE7'
print(char)  # Output: 鷧

Perl:

my $char = "\x{9DE7}";
print $char;  # Output: 鷧

PHP:

$char = "\x{9DE7}";
echo $char;  // Output: 鷧

Ruby:

char = "\u{9DE7}"
puts char  # Output: 鷧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40423;</p>  <!-- Display: 鷧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DE7;</p>  <!-- Display: 鷧 -->

URL Encoding:

// 鷧 URL encoding
https://unicodefinder.com/search.php?query=%E9%B7%A7

Encodings

MD5:

d8d08a899d33328635132c6d0cce1d34

SHA1:

394613e7e6e6c22c483792d44feaf80edb3047d3

Base64:

6ben