Unicode Finder

"塇" U+5847(CJK UNIFIED IDEOGRAPH-5847)

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

Programming

C
\u5847
JavaScript
\u5847
Java
\u5847
Json
\u5847
Python
\u5847
Perl
\x{5847}
PHP
\x{5847}
Ruby
\u{5847}
Rust
\u{5847}
Go
\u5847

Web

CSS
\005847
HtmlDecimal
塇
HtmlHexadecimal
塇
Url
%E5%A1%87

Code

MD5
c208d50126300f42f1cfb0aa04476b92
Sha1
08abeb7f8188643582290d810d0df1de116c11b6
Base64
5aGH

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

Programming Languages

C:

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

JavaScript:

const char = '\u5847';
console.log(char);  // Output: 塇

Java:

char c = '\u5847';
System.out.println(c);  // Output: 塇

JSON:

{"text": "\u5847"}  // Value: 塇

Python:

char = '\u5847'
print(char)  # Output: 塇

Perl:

my $char = "\x{5847}";
print $char;  # Output: 塇

PHP:

$char = "\x{5847}";
echo $char;  // Output: 塇

Ruby:

char = "\u{5847}"
puts char  # Output: 塇

Rust:

let c = '\u{5847}';
println!("{}", c);  // Output: 塇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005847";  /* Display: 塇 */
}

HTML Decimal:

<p>HTML decimal: &#22599;</p>  <!-- Display: 塇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5847;</p>  <!-- Display: 塇 -->

URL Encoding:

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

Encodings

MD5:

c208d50126300f42f1cfb0aa04476b92

SHA1:

08abeb7f8188643582290d810d0df1de116c11b6

Base64:

5aGH