Unicode Finder

"坒" U+5752(CJK UNIFIED IDEOGRAPH-5752)

U+5752
Όνομα Μπλοκ
CJK Unified Ideographs
Όνομα
CJK UNIFIED IDEOGRAPH-5752

Programming

C
\u5752
JavaScript
\u5752
Java
\u5752
Json
\u5752
Python
\u5752
Perl
\x{5752}
PHP
\x{5752}
Ruby
\u{5752}
Rust
\u{5752}
Go
\u5752

Web

CSS
\005752
HtmlDecimal
坒
HtmlHexadecimal
坒
Url
%E5%9D%92

Code

MD5
b6a26e9360496e5a18125c1f0f1d0a85
Sha1
15465d3479e94aaebe6f68841def22e449da0636
Base64
5Z2S

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u5752';
console.log(char);  // Output: 坒

Java:

char c = '\u5752';
System.out.println(c);  // Output: 坒

JSON:

{"text": "\u5752"}  // Value: 坒

Python:

char = '\u5752'
print(char)  # Output: 坒

Perl:

my $char = "\x{5752}";
print $char;  # Output: 坒

PHP:

$char = "\x{5752}";
echo $char;  // Output: 坒

Ruby:

char = "\u{5752}"
puts char  # Output: 坒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005752";  /* Display: 坒 */
}

HTML Decimal:

<p>HTML decimal: &#22354;</p>  <!-- Display: 坒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5752;</p>  <!-- Display: 坒 -->

URL Encoding:

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

Encodings

MD5:

b6a26e9360496e5a18125c1f0f1d0a85

SHA1:

15465d3479e94aaebe6f68841def22e449da0636

Base64:

5Z2S