Unicode Finder

"仙" U+4ED9(CJK UNIFIED IDEOGRAPH-4ED9)

U+4ED9
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4ED9

Programming

C
\u4ED9
JavaScript
\u4ED9
Java
\u4ED9
Json
\u4ED9
Python
\u4ED9
Perl
\x{4ED9}
PHP
\x{4ED9}
Ruby
\u{4ED9}
Rust
\u{4ED9}
Go
\u4ED9

Web

CSS
\004ED9
HtmlDecimal
仙
HtmlHexadecimal
仙
Url
%E4%BB%99

Code

MD5
a8010680c2a7868642b79fdd7a84b448
Sha1
e2784a7421764a35c1146c61e4395ba49214f46e
Base64
5LuZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4ED9';
console.log(char);  // Output: 仙

Java:

char c = '\u4ED9';
System.out.println(c);  // Output: 仙

JSON:

{"text": "\u4ED9"}  // Value: 仙

Python:

char = '\u4ED9'
print(char)  # Output: 仙

Perl:

my $char = "\x{4ED9}";
print $char;  # Output: 仙

PHP:

$char = "\x{4ED9}";
echo $char;  // Output: 仙

Ruby:

char = "\u{4ED9}"
puts char  # Output: 仙

Rust:

let c = '\u{4ED9}';
println!("{}", c);  // Output: 仙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004ED9";  /* Display: 仙 */
}

HTML Decimal:

<p>HTML decimal: &#20185;</p>  <!-- Display: 仙 -->

HTML Hexadecimal:

<p>HTML hex: &#x4ED9;</p>  <!-- Display: 仙 -->

URL Encoding:

// 仙 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%99

Encodings

MD5:

a8010680c2a7868642b79fdd7a84b448

SHA1:

e2784a7421764a35c1146c61e4395ba49214f46e

Base64:

5LuZ