Unicode Finder

"囕" U+56D5(CJK UNIFIED IDEOGRAPH-56D5)

U+56D5
ব্লক নাম
CJK Unified Ideographs
নাম
CJK UNIFIED IDEOGRAPH-56D5

Programming

C
\u56D5
JavaScript
\u56D5
Java
\u56D5
Json
\u56D5
Python
\u56D5
Perl
\x{56D5}
PHP
\x{56D5}
Ruby
\u{56D5}
Rust
\u{56D5}
Go
\u56D5

Web

CSS
\0056D5
HtmlDecimal
囕
HtmlHexadecimal
囕
Url
%E5%9B%95

Code

MD5
7bc6e35e6c5b27c3f9036db7c48d414e
Sha1
d31af8c9ab4bdb90eb4127e22e07eb788c428063
Base64
5ZuV

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

Programming Languages

C:

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

JavaScript:

const char = '\u56D5';
console.log(char);  // Output: 囕

Java:

char c = '\u56D5';
System.out.println(c);  // Output: 囕

JSON:

{"text": "\u56D5"}  // Value: 囕

Python:

char = '\u56D5'
print(char)  # Output: 囕

Perl:

my $char = "\x{56D5}";
print $char;  # Output: 囕

PHP:

$char = "\x{56D5}";
echo $char;  // Output: 囕

Ruby:

char = "\u{56D5}"
puts char  # Output: 囕

Rust:

let c = '\u{56D5}';
println!("{}", c);  // Output: 囕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056D5";  /* Display: 囕 */
}

HTML Decimal:

<p>HTML decimal: &#22229;</p>  <!-- Display: 囕 -->

HTML Hexadecimal:

<p>HTML hex: &#x56D5;</p>  <!-- Display: 囕 -->

URL Encoding:

// 囕 URL encoding
https://unicodefinder.com/search.php?query=%E5%9B%95

Encodings

MD5:

7bc6e35e6c5b27c3f9036db7c48d414e

SHA1:

d31af8c9ab4bdb90eb4127e22e07eb788c428063

Base64:

5ZuV