Unicode Finder

"嗟" U+55DF(CJK UNIFIED IDEOGRAPH-55DF)

U+55DF
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-55DF

Programming

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

Web

CSS
\0055DF
HtmlDecimal
嗟
HtmlHexadecimal
嗟
Url
%E5%97%9F

Code

MD5
744c47a7b0c3afa0796ef777eb4448a4
Sha1
2c54af7001b08cde337f1c631db1c028bccd5ef7
Base64
5Zef

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u55DF';
console.log(char);  // Output: 嗟

Java:

char c = '\u55DF';
System.out.println(c);  // Output: 嗟

JSON:

{"text": "\u55DF"}  // Value: 嗟

Python:

char = '\u55DF'
print(char)  # Output: 嗟

Perl:

my $char = "\x{55DF}";
print $char;  # Output: 嗟

PHP:

$char = "\x{55DF}";
echo $char;  // Output: 嗟

Ruby:

char = "\u{55DF}"
puts char  # Output: 嗟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21983;</p>  <!-- Display: 嗟 -->

HTML Hexadecimal:

<p>HTML hex: &#x55DF;</p>  <!-- Display: 嗟 -->

URL Encoding:

// 嗟 URL encoding
https://unicodefinder.com/search.php?query=%E5%97%9F

Encodings

MD5:

744c47a7b0c3afa0796ef777eb4448a4

SHA1:

2c54af7001b08cde337f1c631db1c028bccd5ef7

Base64:

5Zef