Unicode Finder

"孌" U+5B4C(CJK UNIFIED IDEOGRAPH-5B4C)

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

Programming

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

Web

CSS
\005B4C
HtmlDecimal
孌
HtmlHexadecimal
孌
Url
%E5%AD%8C

Code

MD5
28481c44646863895352b013a48ae96d
Sha1
4e128483c876a15b5cbcd370c7f96134829c8b8e
Base64
5a2M

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

Programming Languages

C:

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

JavaScript:

const char = '\u5B4C';
console.log(char);  // Output: 孌

Java:

char c = '\u5B4C';
System.out.println(c);  // Output: 孌

JSON:

{"text": "\u5B4C"}  // Value: 孌

Python:

char = '\u5B4C'
print(char)  # Output: 孌

Perl:

my $char = "\x{5B4C}";
print $char;  # Output: 孌

PHP:

$char = "\x{5B4C}";
echo $char;  // Output: 孌

Ruby:

char = "\u{5B4C}"
puts char  # Output: 孌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23372;</p>  <!-- Display: 孌 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B4C;</p>  <!-- Display: 孌 -->

URL Encoding:

// 孌 URL encoding
https://unicodefinder.com/search.php?query=%E5%AD%8C

Encodings

MD5:

28481c44646863895352b013a48ae96d

SHA1:

4e128483c876a15b5cbcd370c7f96134829c8b8e

Base64:

5a2M