Unicode Finder

"坱" U+5771(CJK UNIFIED IDEOGRAPH-5771)

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

Programming

C
\u5771
JavaScript
\u5771
Java
\u5771
Json
\u5771
Python
\u5771
Perl
\x{5771}
PHP
\x{5771}
Ruby
\u{5771}
Rust
\u{5771}
Go
\u5771

Web

CSS
\005771
HtmlDecimal
坱
HtmlHexadecimal
坱
Url
%E5%9D%B1

Code

MD5
9517a4458525878a0c67249d7d509b40
Sha1
826f1239b2df5173474d53f4dc2b0108673776dc
Base64
5Z2x

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u5771';
console.log(char);  // Output: 坱

Java:

char c = '\u5771';
System.out.println(c);  // Output: 坱

JSON:

{"text": "\u5771"}  // Value: 坱

Python:

char = '\u5771'
print(char)  # Output: 坱

Perl:

my $char = "\x{5771}";
print $char;  # Output: 坱

PHP:

$char = "\x{5771}";
echo $char;  // Output: 坱

Ruby:

char = "\u{5771}"
puts char  # Output: 坱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005771";  /* Display: 坱 */
}

HTML Decimal:

<p>HTML decimal: &#22385;</p>  <!-- Display: 坱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5771;</p>  <!-- Display: 坱 -->

URL Encoding:

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

Encodings

MD5:

9517a4458525878a0c67249d7d509b40

SHA1:

826f1239b2df5173474d53f4dc2b0108673776dc

Base64:

5Z2x