Unicode Finder

"鷾" U+9DFE(CJK UNIFIED IDEOGRAPH-9DFE)

U+9DFE
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9DFE

Programming

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

Web

CSS
\009DFE
HtmlDecimal
鷾
HtmlHexadecimal
鷾
Url
%E9%B7%BE

Code

MD5
cb5ea50cdc17941caa5c255cd53a1954
Sha1
7822a13d23b797e25ac44f02fe5d3534f3566232
Base64
6be+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9DFE';
console.log(char);  // Output: 鷾

Java:

char c = '\u9DFE';
System.out.println(c);  // Output: 鷾

JSON:

{"text": "\u9DFE"}  // Value: 鷾

Python:

char = '\u9DFE'
print(char)  # Output: 鷾

Perl:

my $char = "\x{9DFE}";
print $char;  # Output: 鷾

PHP:

$char = "\x{9DFE}";
echo $char;  // Output: 鷾

Ruby:

char = "\u{9DFE}"
puts char  # Output: 鷾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40446;</p>  <!-- Display: 鷾 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DFE;</p>  <!-- Display: 鷾 -->

URL Encoding:

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

Encodings

MD5:

cb5ea50cdc17941caa5c255cd53a1954

SHA1:

7822a13d23b797e25ac44f02fe5d3534f3566232

Base64:

6be+