Unicode Finder

"妫" U+59AB(CJK UNIFIED IDEOGRAPH-59AB)

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

Programming

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

Web

CSS
\0059AB
HtmlDecimal
妫
HtmlHexadecimal
妫
Url
%E5%A6%AB

Code

MD5
047365695b7fcdab5133d04f2cd9ed66
Sha1
e911fb70d6277cbe34fd27e2c9edfb7e3ba05724
Base64
5aar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u59AB';
console.log(char);  // Output: 妫

Java:

char c = '\u59AB';
System.out.println(c);  // Output: 妫

JSON:

{"text": "\u59AB"}  // Value: 妫

Python:

char = '\u59AB'
print(char)  # Output: 妫

Perl:

my $char = "\x{59AB}";
print $char;  # Output: 妫

PHP:

$char = "\x{59AB}";
echo $char;  // Output: 妫

Ruby:

char = "\u{59AB}"
puts char  # Output: 妫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22955;</p>  <!-- Display: 妫 -->

HTML Hexadecimal:

<p>HTML hex: &#x59AB;</p>  <!-- Display: 妫 -->

URL Encoding:

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

Encodings

MD5:

047365695b7fcdab5133d04f2cd9ed66

SHA1:

e911fb70d6277cbe34fd27e2c9edfb7e3ba05724

Base64:

5aar