Unicode Finder

"姆" U+59C6(CJK UNIFIED IDEOGRAPH-59C6)

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

Programming

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

Web

CSS
\0059C6
HtmlDecimal
姆
HtmlHexadecimal
姆
Url
%E5%A7%86

Code

MD5
61e480ddccc425ed178149431a751dd7
Sha1
7ea8f0b2901ba14f083c5c61cc9bfe992fe64b76
Base64
5aeG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u59C6';
console.log(char);  // Output: 姆

Java:

char c = '\u59C6';
System.out.println(c);  // Output: 姆

JSON:

{"text": "\u59C6"}  // Value: 姆

Python:

char = '\u59C6'
print(char)  # Output: 姆

Perl:

my $char = "\x{59C6}";
print $char;  # Output: 姆

PHP:

$char = "\x{59C6}";
echo $char;  // Output: 姆

Ruby:

char = "\u{59C6}"
puts char  # Output: 姆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22982;</p>  <!-- Display: 姆 -->

HTML Hexadecimal:

<p>HTML hex: &#x59C6;</p>  <!-- Display: 姆 -->

URL Encoding:

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

Encodings

MD5:

61e480ddccc425ed178149431a751dd7

SHA1:

7ea8f0b2901ba14f083c5c61cc9bfe992fe64b76

Base64:

5aeG