Unicode Finder

"媍" U+5A8D(CJK UNIFIED IDEOGRAPH-5A8D)

U+5A8D
ব্লক নাম
CJK Unified Ideographs
নাম
CJK UNIFIED IDEOGRAPH-5A8D

Programming

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

Web

CSS
\005A8D
HtmlDecimal
媍
HtmlHexadecimal
媍
Url
%E5%AA%8D

Code

MD5
1d8a353810b5de87e767d6541355b2ad
Sha1
c665c27cf99541b86e78abc580747d30b0420085
Base64
5aqN

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u5A8D';
console.log(char);  // Output: 媍

Java:

char c = '\u5A8D';
System.out.println(c);  // Output: 媍

JSON:

{"text": "\u5A8D"}  // Value: 媍

Python:

char = '\u5A8D'
print(char)  # Output: 媍

Perl:

my $char = "\x{5A8D}";
print $char;  # Output: 媍

PHP:

$char = "\x{5A8D}";
echo $char;  // Output: 媍

Ruby:

char = "\u{5A8D}"
puts char  # Output: 媍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23181;</p>  <!-- Display: 媍 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A8D;</p>  <!-- Display: 媍 -->

URL Encoding:

// 媍 URL encoding
https://unicodefinder.com/search.php?query=%E5%AA%8D

Encodings

MD5:

1d8a353810b5de87e767d6541355b2ad

SHA1:

c665c27cf99541b86e78abc580747d30b0420085

Base64:

5aqN