Unicode Finder

"嗌" U+55CC(CJK UNIFIED IDEOGRAPH-55CC)

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

Programming

C
\u55CC
JavaScript
\u55CC
Java
\u55CC
Json
\u55CC
Python
\u55CC
Perl
\x{55CC}
PHP
\x{55CC}
Ruby
\u{55CC}
Rust
\u{55CC}
Go
\u55CC

Web

CSS
\0055CC
HtmlDecimal
嗌
HtmlHexadecimal
嗌
Url
%E5%97%8C

Code

MD5
f689d96de6a65a9390e1cf0b09eac06a
Sha1
5c317ae9a9a5440d3642151c34cb34e38edc4600
Base64
5ZeM

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

Programming Languages

C:

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

JavaScript:

const char = '\u55CC';
console.log(char);  // Output: 嗌

Java:

char c = '\u55CC';
System.out.println(c);  // Output: 嗌

JSON:

{"text": "\u55CC"}  // Value: 嗌

Python:

char = '\u55CC'
print(char)  # Output: 嗌

Perl:

my $char = "\x{55CC}";
print $char;  # Output: 嗌

PHP:

$char = "\x{55CC}";
echo $char;  // Output: 嗌

Ruby:

char = "\u{55CC}"
puts char  # Output: 嗌

Rust:

let c = '\u{55CC}';
println!("{}", c);  // Output: 嗌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0055CC";  /* Display: 嗌 */
}

HTML Decimal:

<p>HTML decimal: &#21964;</p>  <!-- Display: 嗌 -->

HTML Hexadecimal:

<p>HTML hex: &#x55CC;</p>  <!-- Display: 嗌 -->

URL Encoding:

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

Encodings

MD5:

f689d96de6a65a9390e1cf0b09eac06a

SHA1:

5c317ae9a9a5440d3642151c34cb34e38edc4600

Base64:

5ZeM