Unicode Finder

"喓" U+5593(CJK UNIFIED IDEOGRAPH-5593)

U+5593
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5593

Programming

C
\u5593
JavaScript
\u5593
Java
\u5593
Json
\u5593
Python
\u5593
Perl
\x{5593}
PHP
\x{5593}
Ruby
\u{5593}
Rust
\u{5593}
Go
\u5593

Web

CSS
\005593
HtmlDecimal
喓
HtmlHexadecimal
喓
Url
%E5%96%93

Code

MD5
85e1e379f4f31ac2db42258b49f8281e
Sha1
cfb6eb66cd334c7e638334868128be566b777723
Base64
5ZaT

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5593';
console.log(char);  // Output: 喓

Java:

char c = '\u5593';
System.out.println(c);  // Output: 喓

JSON:

{"text": "\u5593"}  // Value: 喓

Python:

char = '\u5593'
print(char)  # Output: 喓

Perl:

my $char = "\x{5593}";
print $char;  # Output: 喓

PHP:

$char = "\x{5593}";
echo $char;  // Output: 喓

Ruby:

char = "\u{5593}"
puts char  # Output: 喓

Rust:

let c = '\u{5593}';
println!("{}", c);  // Output: 喓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005593";  /* Display: 喓 */
}

HTML Decimal:

<p>HTML decimal: &#21907;</p>  <!-- Display: 喓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5593;</p>  <!-- Display: 喓 -->

URL Encoding:

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

Encodings

MD5:

85e1e379f4f31ac2db42258b49f8281e

SHA1:

cfb6eb66cd334c7e638334868128be566b777723

Base64:

5ZaT