Unicode Finder

"姡" U+59E1(CJK UNIFIED IDEOGRAPH-59E1)

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

Programming

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

Web

CSS
\0059E1
HtmlDecimal
姡
HtmlHexadecimal
姡
Url
%E5%A7%A1

Code

MD5
296aeef979eec0d1df273f3510f24f49
Sha1
7c935ccbb3949f4d6ba289ae17df1c7be861c032
Base64
5aeh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u59E1';
console.log(char);  // Output: 姡

Java:

char c = '\u59E1';
System.out.println(c);  // Output: 姡

JSON:

{"text": "\u59E1"}  // Value: 姡

Python:

char = '\u59E1'
print(char)  # Output: 姡

Perl:

my $char = "\x{59E1}";
print $char;  # Output: 姡

PHP:

$char = "\x{59E1}";
echo $char;  // Output: 姡

Ruby:

char = "\u{59E1}"
puts char  # Output: 姡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23009;</p>  <!-- Display: 姡 -->

HTML Hexadecimal:

<p>HTML hex: &#x59E1;</p>  <!-- Display: 姡 -->

URL Encoding:

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

Encodings

MD5:

296aeef979eec0d1df273f3510f24f49

SHA1:

7c935ccbb3949f4d6ba289ae17df1c7be861c032

Base64:

5aeh