Unicode Finder

"坲" U+5772(CJK UNIFIED IDEOGRAPH-5772)

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

Programming

C
\u5772
JavaScript
\u5772
Java
\u5772
Json
\u5772
Python
\u5772
Perl
\x{5772}
PHP
\x{5772}
Ruby
\u{5772}
Rust
\u{5772}
Go
\u5772

Web

CSS
\005772
HtmlDecimal
坲
HtmlHexadecimal
坲
Url
%E5%9D%B2

Code

MD5
1f1e197e341606f44104fad59f10470d
Sha1
e6b3b0f5a18f4f5d7987f063e613b54107c0a09d
Base64
5Z2y

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u5772';
console.log(char);  // Output: 坲

Java:

char c = '\u5772';
System.out.println(c);  // Output: 坲

JSON:

{"text": "\u5772"}  // Value: 坲

Python:

char = '\u5772'
print(char)  # Output: 坲

Perl:

my $char = "\x{5772}";
print $char;  # Output: 坲

PHP:

$char = "\x{5772}";
echo $char;  // Output: 坲

Ruby:

char = "\u{5772}"
puts char  # Output: 坲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005772";  /* Display: 坲 */
}

HTML Decimal:

<p>HTML decimal: &#22386;</p>  <!-- Display: 坲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5772;</p>  <!-- Display: 坲 -->

URL Encoding:

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

Encodings

MD5:

1f1e197e341606f44104fad59f10470d

SHA1:

e6b3b0f5a18f4f5d7987f063e613b54107c0a09d

Base64:

5Z2y