Unicode Finder

"媫" U+5AAB(CJK UNIFIED IDEOGRAPH-5AAB)

U+5AAB
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-5AAB

Programming

C
\u5AAB
JavaScript
\u5AAB
Java
\u5AAB
Json
\u5AAB
Python
\u5AAB
Perl
\x{5AAB}
PHP
\x{5AAB}
Ruby
\u{5AAB}
Rust
\u{5AAB}
Go
\u5AAB

Web

CSS
\005AAB
HtmlDecimal
媫
HtmlHexadecimal
媫
Url
%E5%AA%AB

Code

MD5
582c0dec8e562b5e38d85238d0082d2e
Sha1
4ed5fa95b2a5f3f96d924a1fddf8f5b0f595e4e7
Base64
5aqr

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5AAB';
console.log(char);  // Output: 媫

Java:

char c = '\u5AAB';
System.out.println(c);  // Output: 媫

JSON:

{"text": "\u5AAB"}  // Value: 媫

Python:

char = '\u5AAB'
print(char)  # Output: 媫

Perl:

my $char = "\x{5AAB}";
print $char;  # Output: 媫

PHP:

$char = "\x{5AAB}";
echo $char;  // Output: 媫

Ruby:

char = "\u{5AAB}"
puts char  # Output: 媫

Rust:

let c = '\u{5AAB}';
println!("{}", c);  // Output: 媫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005AAB";  /* Display: 媫 */
}

HTML Decimal:

<p>HTML decimal: &#23211;</p>  <!-- Display: 媫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AAB;</p>  <!-- Display: 媫 -->

URL Encoding:

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

Encodings

MD5:

582c0dec8e562b5e38d85238d0082d2e

SHA1:

4ed5fa95b2a5f3f96d924a1fddf8f5b0f595e4e7

Base64:

5aqr