Unicode Finder

"姙" U+59D9(CJK UNIFIED IDEOGRAPH-59D9)

U+59D9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-59D9

Programming

C
\u59D9
JavaScript
\u59D9
Java
\u59D9
Json
\u59D9
Python
\u59D9
Perl
\x{59D9}
PHP
\x{59D9}
Ruby
\u{59D9}
Rust
\u{59D9}
Go
\u59D9

Web

CSS
\0059D9
HtmlDecimal
姙
HtmlHexadecimal
姙
Url
%E5%A7%99

Code

MD5
9aa8b38392fe9158931d2a65f399b6ea
Sha1
95c70885f970847e7f6dbddab6e9ad375546efc7
Base64
5aeZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u59D9';
console.log(char);  // Output: 姙

Java:

char c = '\u59D9';
System.out.println(c);  // Output: 姙

JSON:

{"text": "\u59D9"}  // Value: 姙

Python:

char = '\u59D9'
print(char)  # Output: 姙

Perl:

my $char = "\x{59D9}";
print $char;  # Output: 姙

PHP:

$char = "\x{59D9}";
echo $char;  // Output: 姙

Ruby:

char = "\u{59D9}"
puts char  # Output: 姙

Rust:

let c = '\u{59D9}';
println!("{}", c);  // Output: 姙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0059D9";  /* Display: 姙 */
}

HTML Decimal:

<p>HTML decimal: &#23001;</p>  <!-- Display: 姙 -->

HTML Hexadecimal:

<p>HTML hex: &#x59D9;</p>  <!-- Display: 姙 -->

URL Encoding:

// 姙 URL encoding
https://unicodefinder.com/search.php?query=%E5%A7%99

Encodings

MD5:

9aa8b38392fe9158931d2a65f399b6ea

SHA1:

95c70885f970847e7f6dbddab6e9ad375546efc7

Base64:

5aeZ