Unicode Finder

"塃" U+5843(CJK UNIFIED IDEOGRAPH-5843)

U+5843
ब्लॉक का नाम
CJK Unified Ideographs
नाम
CJK UNIFIED IDEOGRAPH-5843

Programming

C
\u5843
JavaScript
\u5843
Java
\u5843
Json
\u5843
Python
\u5843
Perl
\x{5843}
PHP
\x{5843}
Ruby
\u{5843}
Rust
\u{5843}
Go
\u5843

Web

CSS
\005843
HtmlDecimal
塃
HtmlHexadecimal
塃
Url
%E5%A1%83

Code

MD5
d7311d05eb5ff2c4ceb098a655efd21d
Sha1
4a9bfce7305f252b1a52ff922a7b1a4bc5f3cfd3
Base64
5aGD

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u5843';
console.log(char);  // Output: 塃

Java:

char c = '\u5843';
System.out.println(c);  // Output: 塃

JSON:

{"text": "\u5843"}  // Value: 塃

Python:

char = '\u5843'
print(char)  # Output: 塃

Perl:

my $char = "\x{5843}";
print $char;  # Output: 塃

PHP:

$char = "\x{5843}";
echo $char;  // Output: 塃

Ruby:

char = "\u{5843}"
puts char  # Output: 塃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005843";  /* Display: 塃 */
}

HTML Decimal:

<p>HTML decimal: &#22595;</p>  <!-- Display: 塃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5843;</p>  <!-- Display: 塃 -->

URL Encoding:

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

Encodings

MD5:

d7311d05eb5ff2c4ceb098a655efd21d

SHA1:

4a9bfce7305f252b1a52ff922a7b1a4bc5f3cfd3

Base64:

5aGD