Unicode Finder

"嘆" U+5606(CJK UNIFIED IDEOGRAPH-5606)

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

Programming

C
\u5606
JavaScript
\u5606
Java
\u5606
Json
\u5606
Python
\u5606
Perl
\x{5606}
PHP
\x{5606}
Ruby
\u{5606}
Rust
\u{5606}
Go
\u5606

Web

CSS
\005606
HtmlDecimal
嘆
HtmlHexadecimal
嘆
Url
%E5%98%86

Code

MD5
afc7b383df0b7fa22aecc77b7d8a7653
Sha1
208f6c7c406eb627c6263ebcdf7b2ec1caacff5b
Base64
5ZiG

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5606';
console.log(char);  // Output: 嘆

Java:

char c = '\u5606';
System.out.println(c);  // Output: 嘆

JSON:

{"text": "\u5606"}  // Value: 嘆

Python:

char = '\u5606'
print(char)  # Output: 嘆

Perl:

my $char = "\x{5606}";
print $char;  # Output: 嘆

PHP:

$char = "\x{5606}";
echo $char;  // Output: 嘆

Ruby:

char = "\u{5606}"
puts char  # Output: 嘆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005606";  /* Display: 嘆 */
}

HTML Decimal:

<p>HTML decimal: &#22022;</p>  <!-- Display: 嘆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5606;</p>  <!-- Display: 嘆 -->

URL Encoding:

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

Encodings

MD5:

afc7b383df0b7fa22aecc77b7d8a7653

SHA1:

208f6c7c406eb627c6263ebcdf7b2ec1caacff5b

Base64:

5ZiG