Unicode Finder

"鴥" U+9D25(CJK UNIFIED IDEOGRAPH-9D25)

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

Programming

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

Web

CSS
\009D25
HtmlDecimal
鴥
HtmlHexadecimal
鴥
Url
%E9%B4%A5

Code

MD5
dd03f74ff2ab3dcde6a0f8d54e7135dd
Sha1
e0deede52421a5ecc1b97237115d3aca709145ff
Base64
6bSl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D25';
console.log(char);  // Output: 鴥

Java:

char c = '\u9D25';
System.out.println(c);  // Output: 鴥

JSON:

{"text": "\u9D25"}  // Value: 鴥

Python:

char = '\u9D25'
print(char)  # Output: 鴥

Perl:

my $char = "\x{9D25}";
print $char;  # Output: 鴥

PHP:

$char = "\x{9D25}";
echo $char;  // Output: 鴥

Ruby:

char = "\u{9D25}"
puts char  # Output: 鴥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40229;</p>  <!-- Display: 鴥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D25;</p>  <!-- Display: 鴥 -->

URL Encoding:

// 鴥 URL encoding
https://unicodefinder.com/search.php?query=%E9%B4%A5

Encodings

MD5:

dd03f74ff2ab3dcde6a0f8d54e7135dd

SHA1:

e0deede52421a5ecc1b97237115d3aca709145ff

Base64:

6bSl