Unicode Finder

"嗗" U+55D7(CJK UNIFIED IDEOGRAPH-55D7)

U+55D7
Block Name
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-55D7

Programming

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

Web

CSS
\0055D7
HtmlDecimal
嗗
HtmlHexadecimal
嗗
Url
%E5%97%97

Code

MD5
92d2606ed9937b2ccee04105c1c991d2
Sha1
28676968e5a04db1b07b56de859dde876fdc29ad
Base64
5ZeX

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u55D7';
console.log(char);  // Output: 嗗

Java:

char c = '\u55D7';
System.out.println(c);  // Output: 嗗

JSON:

{"text": "\u55D7"}  // Value: 嗗

Python:

char = '\u55D7'
print(char)  # Output: 嗗

Perl:

my $char = "\x{55D7}";
print $char;  # Output: 嗗

PHP:

$char = "\x{55D7}";
echo $char;  // Output: 嗗

Ruby:

char = "\u{55D7}"
puts char  # Output: 嗗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21975;</p>  <!-- Display: 嗗 -->

HTML Hexadecimal:

<p>HTML hex: &#x55D7;</p>  <!-- Display: 嗗 -->

URL Encoding:

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

Encodings

MD5:

92d2606ed9937b2ccee04105c1c991d2

SHA1:

28676968e5a04db1b07b56de859dde876fdc29ad

Base64:

5ZeX