Unicode Finder

"鷼" U+9DFC(CJK UNIFIED IDEOGRAPH-9DFC)

U+9DFC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9DFC

Programming

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

Web

CSS
\009DFC
HtmlDecimal
鷼
HtmlHexadecimal
鷼
Url
%E9%B7%BC

Code

MD5
04b8ae2f9a6e0e1f872d5043933206f2
Sha1
cde464a0db25684ee9407e459b6b6352cfa1f82f
Base64
6be8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DFC';
console.log(char);  // Output: 鷼

Java:

char c = '\u9DFC';
System.out.println(c);  // Output: 鷼

JSON:

{"text": "\u9DFC"}  // Value: 鷼

Python:

char = '\u9DFC'
print(char)  # Output: 鷼

Perl:

my $char = "\x{9DFC}";
print $char;  # Output: 鷼

PHP:

$char = "\x{9DFC}";
echo $char;  // Output: 鷼

Ruby:

char = "\u{9DFC}"
puts char  # Output: 鷼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40444;</p>  <!-- Display: 鷼 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DFC;</p>  <!-- Display: 鷼 -->

URL Encoding:

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

Encodings

MD5:

04b8ae2f9a6e0e1f872d5043933206f2

SHA1:

cde464a0db25684ee9407e459b6b6352cfa1f82f

Base64:

6be8