Unicode Finder

"姭" U+59ED(CJK UNIFIED IDEOGRAPH-59ED)

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

Programming

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

Web

CSS
\0059ED
HtmlDecimal
姭
HtmlHexadecimal
姭
Url
%E5%A7%AD

Code

MD5
69600bdf554f60c70639101666331f6c
Sha1
a4585c2fcb06b199328e0356500e814c8ee50ea6
Base64
5aet

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u59ED';
console.log(char);  // Output: 姭

Java:

char c = '\u59ED';
System.out.println(c);  // Output: 姭

JSON:

{"text": "\u59ED"}  // Value: 姭

Python:

char = '\u59ED'
print(char)  # Output: 姭

Perl:

my $char = "\x{59ED}";
print $char;  # Output: 姭

PHP:

$char = "\x{59ED}";
echo $char;  // Output: 姭

Ruby:

char = "\u{59ED}"
puts char  # Output: 姭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23021;</p>  <!-- Display: 姭 -->

HTML Hexadecimal:

<p>HTML hex: &#x59ED;</p>  <!-- Display: 姭 -->

URL Encoding:

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

Encodings

MD5:

69600bdf554f60c70639101666331f6c

SHA1:

a4585c2fcb06b199328e0356500e814c8ee50ea6

Base64:

5aet