Unicode Finder

"坶" U+5776(CJK UNIFIED IDEOGRAPH-5776)

U+5776
Nazwa Bloku
CJK Unified Ideographs
Nazwa
CJK UNIFIED IDEOGRAPH-5776

Programming

C
\u5776
JavaScript
\u5776
Java
\u5776
Json
\u5776
Python
\u5776
Perl
\x{5776}
PHP
\x{5776}
Ruby
\u{5776}
Rust
\u{5776}
Go
\u5776

Web

CSS
\005776
HtmlDecimal
坶
HtmlHexadecimal
坶
Url
%E5%9D%B6

Code

MD5
fc008ef5f60c674364610e7755a3fa5b
Sha1
2a467025fcb2a83c6b09787a600974a10990c406
Base64
5Z22

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u5776';
console.log(char);  // Output: 坶

Java:

char c = '\u5776';
System.out.println(c);  // Output: 坶

JSON:

{"text": "\u5776"}  // Value: 坶

Python:

char = '\u5776'
print(char)  # Output: 坶

Perl:

my $char = "\x{5776}";
print $char;  # Output: 坶

PHP:

$char = "\x{5776}";
echo $char;  // Output: 坶

Ruby:

char = "\u{5776}"
puts char  # Output: 坶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005776";  /* Display: 坶 */
}

HTML Decimal:

<p>HTML decimal: &#22390;</p>  <!-- Display: 坶 -->

HTML Hexadecimal:

<p>HTML hex: &#x5776;</p>  <!-- Display: 坶 -->

URL Encoding:

// 坶 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%B6

Encodings

MD5:

fc008ef5f60c674364610e7755a3fa5b

SHA1:

2a467025fcb2a83c6b09787a600974a10990c406

Base64:

5Z22