Unicode Finder

"鷞" U+9DDE(CJK UNIFIED IDEOGRAPH-9DDE)

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

Programming

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

Web

CSS
\009DDE
HtmlDecimal
鷞
HtmlHexadecimal
鷞
Url
%E9%B7%9E

Code

MD5
d4922ba8e7b0173da4898386a0832d3e
Sha1
597a62e91501c8bccc4da74659bee166e5b5dee0
Base64
6bee

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9DDE';
console.log(char);  // Output: 鷞

Java:

char c = '\u9DDE';
System.out.println(c);  // Output: 鷞

JSON:

{"text": "\u9DDE"}  // Value: 鷞

Python:

char = '\u9DDE'
print(char)  # Output: 鷞

Perl:

my $char = "\x{9DDE}";
print $char;  # Output: 鷞

PHP:

$char = "\x{9DDE}";
echo $char;  // Output: 鷞

Ruby:

char = "\u{9DDE}"
puts char  # Output: 鷞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40414;</p>  <!-- Display: 鷞 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DDE;</p>  <!-- Display: 鷞 -->

URL Encoding:

// 鷞 URL encoding
https://unicodefinder.com/search.php?query=%E9%B7%9E

Encodings

MD5:

d4922ba8e7b0173da4898386a0832d3e

SHA1:

597a62e91501c8bccc4da74659bee166e5b5dee0

Base64:

6bee