Unicode Finder

"喫" U+55AB(CJK UNIFIED IDEOGRAPH-55AB)

U+55AB
Název Bloku
CJK Unified Ideographs
Název
CJK UNIFIED IDEOGRAPH-55AB

Programming

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

Web

CSS
\0055AB
HtmlDecimal
喫
HtmlHexadecimal
喫
Url
%E5%96%AB

Code

MD5
289a7f8f8b6b4374a8c484faf1e61f94
Sha1
7f13ea2aa88b81667ca4132104612f94c6391052
Base64
5Zar

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u55AB';
console.log(char);  // Output: 喫

Java:

char c = '\u55AB';
System.out.println(c);  // Output: 喫

JSON:

{"text": "\u55AB"}  // Value: 喫

Python:

char = '\u55AB'
print(char)  # Output: 喫

Perl:

my $char = "\x{55AB}";
print $char;  # Output: 喫

PHP:

$char = "\x{55AB}";
echo $char;  // Output: 喫

Ruby:

char = "\u{55AB}"
puts char  # Output: 喫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21931;</p>  <!-- Display: 喫 -->

HTML Hexadecimal:

<p>HTML hex: &#x55AB;</p>  <!-- Display: 喫 -->

URL Encoding:

// 喫 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%AB

Encodings

MD5:

289a7f8f8b6b4374a8c484faf1e61f94

SHA1:

7f13ea2aa88b81667ca4132104612f94c6391052

Base64:

5Zar