Unicode Finder

"嗲" U+55F2(CJK UNIFIED IDEOGRAPH-55F2)

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

Programming

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

Web

CSS
\0055F2
HtmlDecimal
嗲
HtmlHexadecimal
嗲
Url
%E5%97%B2

Code

MD5
5fe97ecb23bcdd11aad2a6e1bf5cebbe
Sha1
e5590ca2a352b473bae770aa54eb61f1decda147
Base64
5Zey

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u55F2';
console.log(char);  // Output: 嗲

Java:

char c = '\u55F2';
System.out.println(c);  // Output: 嗲

JSON:

{"text": "\u55F2"}  // Value: 嗲

Python:

char = '\u55F2'
print(char)  # Output: 嗲

Perl:

my $char = "\x{55F2}";
print $char;  # Output: 嗲

PHP:

$char = "\x{55F2}";
echo $char;  // Output: 嗲

Ruby:

char = "\u{55F2}"
puts char  # Output: 嗲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22002;</p>  <!-- Display: 嗲 -->

HTML Hexadecimal:

<p>HTML hex: &#x55F2;</p>  <!-- Display: 嗲 -->

URL Encoding:

// 嗲 URL encoding
https://unicodefinder.com/search.php?query=%E5%97%B2

Encodings

MD5:

5fe97ecb23bcdd11aad2a6e1bf5cebbe

SHA1:

e5590ca2a352b473bae770aa54eb61f1decda147

Base64:

5Zey