Unicode Finder

"喺" U+55BA(CJK UNIFIED IDEOGRAPH-55BA)

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

Programming

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

Web

CSS
\0055BA
HtmlDecimal
喺
HtmlHexadecimal
喺
Url
%E5%96%BA

Code

MD5
04efda25c114599779ade03b8bde37d1
Sha1
173b4d6608822661f513eef3625c3efc25dab31b
Base64
5Za6

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u55BA';
console.log(char);  // Output: 喺

Java:

char c = '\u55BA';
System.out.println(c);  // Output: 喺

JSON:

{"text": "\u55BA"}  // Value: 喺

Python:

char = '\u55BA'
print(char)  # Output: 喺

Perl:

my $char = "\x{55BA}";
print $char;  # Output: 喺

PHP:

$char = "\x{55BA}";
echo $char;  // Output: 喺

Ruby:

char = "\u{55BA}"
puts char  # Output: 喺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21946;</p>  <!-- Display: 喺 -->

HTML Hexadecimal:

<p>HTML hex: &#x55BA;</p>  <!-- Display: 喺 -->

URL Encoding:

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

Encodings

MD5:

04efda25c114599779ade03b8bde37d1

SHA1:

173b4d6608822661f513eef3625c3efc25dab31b

Base64:

5Za6