Unicode Finder

"坕" U+5755(CJK UNIFIED IDEOGRAPH-5755)

U+5755
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5755

Programming

C
\u5755
JavaScript
\u5755
Java
\u5755
Json
\u5755
Python
\u5755
Perl
\x{5755}
PHP
\x{5755}
Ruby
\u{5755}
Rust
\u{5755}
Go
\u5755

Web

CSS
\005755
HtmlDecimal
坕
HtmlHexadecimal
坕
Url
%E5%9D%95

Code

MD5
eb36b99bb53fb3603190819595d47742
Sha1
c792d169fb21482f4f5737d9747332b788d19c61
Base64
5Z2V

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5755';
console.log(char);  // Output: 坕

Java:

char c = '\u5755';
System.out.println(c);  // Output: 坕

JSON:

{"text": "\u5755"}  // Value: 坕

Python:

char = '\u5755'
print(char)  # Output: 坕

Perl:

my $char = "\x{5755}";
print $char;  # Output: 坕

PHP:

$char = "\x{5755}";
echo $char;  // Output: 坕

Ruby:

char = "\u{5755}"
puts char  # Output: 坕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005755";  /* Display: 坕 */
}

HTML Decimal:

<p>HTML decimal: &#22357;</p>  <!-- Display: 坕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5755;</p>  <!-- Display: 坕 -->

URL Encoding:

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

Encodings

MD5:

eb36b99bb53fb3603190819595d47742

SHA1:

c792d169fb21482f4f5737d9747332b788d19c61

Base64:

5Z2V