Unicode Finder

"嘀" U+5600(CJK UNIFIED IDEOGRAPH-5600)

U+5600
Block Name
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-5600

Programming

C
\u5600
JavaScript
\u5600
Java
\u5600
Json
\u5600
Python
\u5600
Perl
\x{5600}
PHP
\x{5600}
Ruby
\u{5600}
Rust
\u{5600}
Go
\u5600

Web

CSS
\005600
HtmlDecimal
嘀
HtmlHexadecimal
嘀
Url
%E5%98%80

Code

MD5
7704f41edb77f020a313ca459ac7c4f8
Sha1
90eec102f544656745d0bafd63f72c5cdf880038
Base64
5ZiA

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u5600';
console.log(char);  // Output: 嘀

Java:

char c = '\u5600';
System.out.println(c);  // Output: 嘀

JSON:

{"text": "\u5600"}  // Value: 嘀

Python:

char = '\u5600'
print(char)  # Output: 嘀

Perl:

my $char = "\x{5600}";
print $char;  # Output: 嘀

PHP:

$char = "\x{5600}";
echo $char;  // Output: 嘀

Ruby:

char = "\u{5600}"
puts char  # Output: 嘀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005600";  /* Display: 嘀 */
}

HTML Decimal:

<p>HTML decimal: &#22016;</p>  <!-- Display: 嘀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5600;</p>  <!-- Display: 嘀 -->

URL Encoding:

// 嘀 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%80

Encodings

MD5:

7704f41edb77f020a313ca459ac7c4f8

SHA1:

90eec102f544656745d0bafd63f72c5cdf880038

Base64:

5ZiA