Unicode Finder

"喔" U+5594(CJK UNIFIED IDEOGRAPH-5594)

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

Programming

C
\u5594
JavaScript
\u5594
Java
\u5594
Json
\u5594
Python
\u5594
Perl
\x{5594}
PHP
\x{5594}
Ruby
\u{5594}
Rust
\u{5594}
Go
\u5594

Web

CSS
\005594
HtmlDecimal
喔
HtmlHexadecimal
喔
Url
%E5%96%94

Code

MD5
39b413579e660545dfeea4aa105093e9
Sha1
e6e02410effe6c11523cb8cf2635c14512ca41b3
Base64
5ZaU

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5594';
console.log(char);  // Output: 喔

Java:

char c = '\u5594';
System.out.println(c);  // Output: 喔

JSON:

{"text": "\u5594"}  // Value: 喔

Python:

char = '\u5594'
print(char)  # Output: 喔

Perl:

my $char = "\x{5594}";
print $char;  # Output: 喔

PHP:

$char = "\x{5594}";
echo $char;  // Output: 喔

Ruby:

char = "\u{5594}"
puts char  # Output: 喔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005594";  /* Display: 喔 */
}

HTML Decimal:

<p>HTML decimal: &#21908;</p>  <!-- Display: 喔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5594;</p>  <!-- Display: 喔 -->

URL Encoding:

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

Encodings

MD5:

39b413579e660545dfeea4aa105093e9

SHA1:

e6e02410effe6c11523cb8cf2635c14512ca41b3

Base64:

5ZaU