Unicode Finder

"嚖" U+5696(CJK UNIFIED IDEOGRAPH-5696)

U+5696
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-5696

Programming

C
\u5696
JavaScript
\u5696
Java
\u5696
Json
\u5696
Python
\u5696
Perl
\x{5696}
PHP
\x{5696}
Ruby
\u{5696}
Rust
\u{5696}
Go
\u5696

Web

CSS
\005696
HtmlDecimal
嚖
HtmlHexadecimal
嚖
Url
%E5%9A%96

Code

MD5
f6779508adacfd13b513af2615a4353b
Sha1
58f29a41547f77c05cc9fd4417d72f477e6120e4
Base64
5ZqW

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5696';
console.log(char);  // Output: 嚖

Java:

char c = '\u5696';
System.out.println(c);  // Output: 嚖

JSON:

{"text": "\u5696"}  // Value: 嚖

Python:

char = '\u5696'
print(char)  # Output: 嚖

Perl:

my $char = "\x{5696}";
print $char;  # Output: 嚖

PHP:

$char = "\x{5696}";
echo $char;  // Output: 嚖

Ruby:

char = "\u{5696}"
puts char  # Output: 嚖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005696";  /* Display: 嚖 */
}

HTML Decimal:

<p>HTML decimal: &#22166;</p>  <!-- Display: 嚖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5696;</p>  <!-- Display: 嚖 -->

URL Encoding:

// 嚖 URL encoding
https://unicodefinder.com/search.php?query=%E5%9A%96

Encodings

MD5:

f6779508adacfd13b513af2615a4353b

SHA1:

58f29a41547f77c05cc9fd4417d72f477e6120e4

Base64:

5ZqW