Unicode Finder

"鶩" U+9DA9(CJK UNIFIED IDEOGRAPH-9DA9)

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

Programming

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

Web

CSS
\009DA9
HtmlDecimal
鶩
HtmlHexadecimal
鶩
Url
%E9%B6%A9

Code

MD5
a1ef4f49554a0d6de10e4411145d97f0
Sha1
fb10e0e51d338dc096039ce12c84c2300d57f7a2
Base64
6bap

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DA9';
console.log(char);  // Output: 鶩

Java:

char c = '\u9DA9';
System.out.println(c);  // Output: 鶩

JSON:

{"text": "\u9DA9"}  // Value: 鶩

Python:

char = '\u9DA9'
print(char)  # Output: 鶩

Perl:

my $char = "\x{9DA9}";
print $char;  # Output: 鶩

PHP:

$char = "\x{9DA9}";
echo $char;  // Output: 鶩

Ruby:

char = "\u{9DA9}"
puts char  # Output: 鶩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40361;</p>  <!-- Display: 鶩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DA9;</p>  <!-- Display: 鶩 -->

URL Encoding:

// 鶩 URL encoding
https://unicodefinder.com/search.php?query=%E9%B6%A9

Encodings

MD5:

a1ef4f49554a0d6de10e4411145d97f0

SHA1:

fb10e0e51d338dc096039ce12c84c2300d57f7a2

Base64:

6bap