Unicode Finder

"妹" U+59B9(CJK UNIFIED IDEOGRAPH-59B9)

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

Programming

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

Web

CSS
\0059B9
HtmlDecimal
妹
HtmlHexadecimal
妹
Url
%E5%A6%B9

Code

MD5
aa8098078b8e5889aca202860f1ebf0f
Sha1
28f894973975d7760649f5b48f9a7c844eef7c71
Base64
5aa5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u59B9';
console.log(char);  // Output: 妹

Java:

char c = '\u59B9';
System.out.println(c);  // Output: 妹

JSON:

{"text": "\u59B9"}  // Value: 妹

Python:

char = '\u59B9'
print(char)  # Output: 妹

Perl:

my $char = "\x{59B9}";
print $char;  # Output: 妹

PHP:

$char = "\x{59B9}";
echo $char;  // Output: 妹

Ruby:

char = "\u{59B9}"
puts char  # Output: 妹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22969;</p>  <!-- Display: 妹 -->

HTML Hexadecimal:

<p>HTML hex: &#x59B9;</p>  <!-- Display: 妹 -->

URL Encoding:

// 妹 URL encoding
https://unicodefinder.com/search.php?query=%E5%A6%B9

Encodings

MD5:

aa8098078b8e5889aca202860f1ebf0f

SHA1:

28f894973975d7760649f5b48f9a7c844eef7c71

Base64:

5aa5