Unicode Finder

"嘖" U+5616(CJK UNIFIED IDEOGRAPH-5616)

U+5616
Όνομα Μπλοκ
CJK Unified Ideographs
Όνομα
CJK UNIFIED IDEOGRAPH-5616

Programming

C
\u5616
JavaScript
\u5616
Java
\u5616
Json
\u5616
Python
\u5616
Perl
\x{5616}
PHP
\x{5616}
Ruby
\u{5616}
Rust
\u{5616}
Go
\u5616

Web

CSS
\005616
HtmlDecimal
嘖
HtmlHexadecimal
嘖
Url
%E5%98%96

Code

MD5
7b7cf5cab3491c2b58dae2935e97a2be
Sha1
2a3a68ba267105162e25b60b41ebe24b2072974b
Base64
5ZiW

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u5616';
console.log(char);  // Output: 嘖

Java:

char c = '\u5616';
System.out.println(c);  // Output: 嘖

JSON:

{"text": "\u5616"}  // Value: 嘖

Python:

char = '\u5616'
print(char)  # Output: 嘖

Perl:

my $char = "\x{5616}";
print $char;  # Output: 嘖

PHP:

$char = "\x{5616}";
echo $char;  // Output: 嘖

Ruby:

char = "\u{5616}"
puts char  # Output: 嘖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005616";  /* Display: 嘖 */
}

HTML Decimal:

<p>HTML decimal: &#22038;</p>  <!-- Display: 嘖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5616;</p>  <!-- Display: 嘖 -->

URL Encoding:

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

Encodings

MD5:

7b7cf5cab3491c2b58dae2935e97a2be

SHA1:

2a3a68ba267105162e25b60b41ebe24b2072974b

Base64:

5ZiW