Unicode Finder

"姇" U+59C7(CJK UNIFIED IDEOGRAPH-59C7)

U+59C7
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-59C7

Programming

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

Web

CSS
\0059C7
HtmlDecimal
姇
HtmlHexadecimal
姇
Url
%E5%A7%87

Code

MD5
37b4b61b689cc21fd13b016f71fc14a3
Sha1
a409c93316291a33e23f4204dc81f814d2ba1982
Base64
5aeH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u59C7';
console.log(char);  // Output: 姇

Java:

char c = '\u59C7';
System.out.println(c);  // Output: 姇

JSON:

{"text": "\u59C7"}  // Value: 姇

Python:

char = '\u59C7'
print(char)  # Output: 姇

Perl:

my $char = "\x{59C7}";
print $char;  # Output: 姇

PHP:

$char = "\x{59C7}";
echo $char;  // Output: 姇

Ruby:

char = "\u{59C7}"
puts char  # Output: 姇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22983;</p>  <!-- Display: 姇 -->

HTML Hexadecimal:

<p>HTML hex: &#x59C7;</p>  <!-- Display: 姇 -->

URL Encoding:

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

Encodings

MD5:

37b4b61b689cc21fd13b016f71fc14a3

SHA1:

a409c93316291a33e23f4204dc81f814d2ba1982

Base64:

5aeH