Unicode Finder

"嗰" U+55F0(CJK UNIFIED IDEOGRAPH-55F0)

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

Programming

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

Web

CSS
\0055F0
HtmlDecimal
嗰
HtmlHexadecimal
嗰
Url
%E5%97%B0

Code

MD5
9c867d0cbfe34f859e1c06ad7637debc
Sha1
19c01f3f6def5d871c1719d0025710dbd9471fec
Base64
5Zew

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u55F0';
console.log(char);  // Output: 嗰

Java:

char c = '\u55F0';
System.out.println(c);  // Output: 嗰

JSON:

{"text": "\u55F0"}  // Value: 嗰

Python:

char = '\u55F0'
print(char)  # Output: 嗰

Perl:

my $char = "\x{55F0}";
print $char;  # Output: 嗰

PHP:

$char = "\x{55F0}";
echo $char;  // Output: 嗰

Ruby:

char = "\u{55F0}"
puts char  # Output: 嗰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22000;</p>  <!-- Display: 嗰 -->

HTML Hexadecimal:

<p>HTML hex: &#x55F0;</p>  <!-- Display: 嗰 -->

URL Encoding:

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

Encodings

MD5:

9c867d0cbfe34f859e1c06ad7637debc

SHA1:

19c01f3f6def5d871c1719d0025710dbd9471fec

Base64:

5Zew