Unicode Finder

"坥" U+5765(CJK UNIFIED IDEOGRAPH-5765)

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

Programming

C
\u5765
JavaScript
\u5765
Java
\u5765
Json
\u5765
Python
\u5765
Perl
\x{5765}
PHP
\x{5765}
Ruby
\u{5765}
Rust
\u{5765}
Go
\u5765

Web

CSS
\005765
HtmlDecimal
坥
HtmlHexadecimal
坥
Url
%E5%9D%A5

Code

MD5
5a9a0de6e7546b76841cb64467544bd6
Sha1
1ebc57d3fd57686fa26089ce3e7a2b7c3848ad8f
Base64
5Z2l

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5765';
console.log(char);  // Output: 坥

Java:

char c = '\u5765';
System.out.println(c);  // Output: 坥

JSON:

{"text": "\u5765"}  // Value: 坥

Python:

char = '\u5765'
print(char)  # Output: 坥

Perl:

my $char = "\x{5765}";
print $char;  # Output: 坥

PHP:

$char = "\x{5765}";
echo $char;  // Output: 坥

Ruby:

char = "\u{5765}"
puts char  # Output: 坥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005765";  /* Display: 坥 */
}

HTML Decimal:

<p>HTML decimal: &#22373;</p>  <!-- Display: 坥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5765;</p>  <!-- Display: 坥 -->

URL Encoding:

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

Encodings

MD5:

5a9a0de6e7546b76841cb64467544bd6

SHA1:

1ebc57d3fd57686fa26089ce3e7a2b7c3848ad8f

Base64:

5Z2l