Unicode Finder

"喬" U+55AC(CJK UNIFIED IDEOGRAPH-55AC)

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

Programming

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

Web

CSS
\0055AC
HtmlDecimal
喬
HtmlHexadecimal
喬
Url
%E5%96%AC

Code

MD5
17ff922149110d754418b43923b7a207
Sha1
8f99f60c00debdd1be2bd5ef7b3b7c0d213f7d3f
Base64
5Zas

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u55AC';
console.log(char);  // Output: 喬

Java:

char c = '\u55AC';
System.out.println(c);  // Output: 喬

JSON:

{"text": "\u55AC"}  // Value: 喬

Python:

char = '\u55AC'
print(char)  # Output: 喬

Perl:

my $char = "\x{55AC}";
print $char;  # Output: 喬

PHP:

$char = "\x{55AC}";
echo $char;  // Output: 喬

Ruby:

char = "\u{55AC}"
puts char  # Output: 喬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21932;</p>  <!-- Display: 喬 -->

HTML Hexadecimal:

<p>HTML hex: &#x55AC;</p>  <!-- Display: 喬 -->

URL Encoding:

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

Encodings

MD5:

17ff922149110d754418b43923b7a207

SHA1:

8f99f60c00debdd1be2bd5ef7b3b7c0d213f7d3f

Base64:

5Zas