Unicode Finder

"嗏" U+55CF(CJK UNIFIED IDEOGRAPH-55CF)

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

Programming

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

Web

CSS
\0055CF
HtmlDecimal
嗏
HtmlHexadecimal
嗏
Url
%E5%97%8F

Code

MD5
b0dc93c9311e61291f8ee9211fddffcc
Sha1
0b6ef0ed40b6716ef8adacc5c1ed69441d3d7c50
Base64
5ZeP

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u55CF';
console.log(char);  // Output: 嗏

Java:

char c = '\u55CF';
System.out.println(c);  // Output: 嗏

JSON:

{"text": "\u55CF"}  // Value: 嗏

Python:

char = '\u55CF'
print(char)  # Output: 嗏

Perl:

my $char = "\x{55CF}";
print $char;  # Output: 嗏

PHP:

$char = "\x{55CF}";
echo $char;  // Output: 嗏

Ruby:

char = "\u{55CF}"
puts char  # Output: 嗏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21967;</p>  <!-- Display: 嗏 -->

HTML Hexadecimal:

<p>HTML hex: &#x55CF;</p>  <!-- Display: 嗏 -->

URL Encoding:

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

Encodings

MD5:

b0dc93c9311e61291f8ee9211fddffcc

SHA1:

0b6ef0ed40b6716ef8adacc5c1ed69441d3d7c50

Base64:

5ZeP