Unicode Finder

"鷬" U+9DEC(CJK UNIFIED IDEOGRAPH-9DEC)

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

Programming

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

Web

CSS
\009DEC
HtmlDecimal
鷬
HtmlHexadecimal
鷬
Url
%E9%B7%AC

Code

MD5
a17d8a139bfcd40d1cd550a2983c1e29
Sha1
227eedd746a6f4755144f89b04160cf832c461bc
Base64
6bes

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DEC';
console.log(char);  // Output: 鷬

Java:

char c = '\u9DEC';
System.out.println(c);  // Output: 鷬

JSON:

{"text": "\u9DEC"}  // Value: 鷬

Python:

char = '\u9DEC'
print(char)  # Output: 鷬

Perl:

my $char = "\x{9DEC}";
print $char;  # Output: 鷬

PHP:

$char = "\x{9DEC}";
echo $char;  // Output: 鷬

Ruby:

char = "\u{9DEC}"
puts char  # Output: 鷬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40428;</p>  <!-- Display: 鷬 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DEC;</p>  <!-- Display: 鷬 -->

URL Encoding:

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

Encodings

MD5:

a17d8a139bfcd40d1cd550a2983c1e29

SHA1:

227eedd746a6f4755144f89b04160cf832c461bc

Base64:

6bes