Unicode Finder

"媇" U+5A87(CJK UNIFIED IDEOGRAPH-5A87)

U+5A87
블록 이름
CJK Unified Ideographs
이름
CJK UNIFIED IDEOGRAPH-5A87

Programming

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

Web

CSS
\005A87
HtmlDecimal
媇
HtmlHexadecimal
媇
Url
%E5%AA%87

Code

MD5
12bdbadebc6abed5ef04c179c0f051a0
Sha1
37a5d5dd2461d1e149c8ad95f9e1bb78966ff821
Base64
5aqH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5A87';
console.log(char);  // Output: 媇

Java:

char c = '\u5A87';
System.out.println(c);  // Output: 媇

JSON:

{"text": "\u5A87"}  // Value: 媇

Python:

char = '\u5A87'
print(char)  # Output: 媇

Perl:

my $char = "\x{5A87}";
print $char;  # Output: 媇

PHP:

$char = "\x{5A87}";
echo $char;  // Output: 媇

Ruby:

char = "\u{5A87}"
puts char  # Output: 媇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23175;</p>  <!-- Display: 媇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A87;</p>  <!-- Display: 媇 -->

URL Encoding:

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

Encodings

MD5:

12bdbadebc6abed5ef04c179c0f051a0

SHA1:

37a5d5dd2461d1e149c8ad95f9e1bb78966ff821

Base64:

5aqH