Unicode Finder

"嗑" U+55D1(CJK UNIFIED IDEOGRAPH-55D1)

U+55D1
블록 이름
CJK Unified Ideographs
이름
CJK UNIFIED IDEOGRAPH-55D1

Programming

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

Web

CSS
\0055D1
HtmlDecimal
嗑
HtmlHexadecimal
嗑
Url
%E5%97%91

Code

MD5
e89bc7addf3cc43113040d7003efa1fc
Sha1
3a9c700230d7c8a1ad1a214fc01a3d1dcdcb3d20
Base64
5ZeR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u55D1';
console.log(char);  // Output: 嗑

Java:

char c = '\u55D1';
System.out.println(c);  // Output: 嗑

JSON:

{"text": "\u55D1"}  // Value: 嗑

Python:

char = '\u55D1'
print(char)  # Output: 嗑

Perl:

my $char = "\x{55D1}";
print $char;  # Output: 嗑

PHP:

$char = "\x{55D1}";
echo $char;  // Output: 嗑

Ruby:

char = "\u{55D1}"
puts char  # Output: 嗑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21969;</p>  <!-- Display: 嗑 -->

HTML Hexadecimal:

<p>HTML hex: &#x55D1;</p>  <!-- Display: 嗑 -->

URL Encoding:

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

Encodings

MD5:

e89bc7addf3cc43113040d7003efa1fc

SHA1:

3a9c700230d7c8a1ad1a214fc01a3d1dcdcb3d20

Base64:

5ZeR