Unicode Finder

"坩" U+5769(CJK UNIFIED IDEOGRAPH-5769)

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

Programming

C
\u5769
JavaScript
\u5769
Java
\u5769
Json
\u5769
Python
\u5769
Perl
\x{5769}
PHP
\x{5769}
Ruby
\u{5769}
Rust
\u{5769}
Go
\u5769

Web

CSS
\005769
HtmlDecimal
坩
HtmlHexadecimal
坩
Url
%E5%9D%A9

Code

MD5
bff3438d1094a02c6f53eb518f541917
Sha1
935384b73693e39afb6a02dc9fb95165e29a9846
Base64
5Z2p

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5769';
console.log(char);  // Output: 坩

Java:

char c = '\u5769';
System.out.println(c);  // Output: 坩

JSON:

{"text": "\u5769"}  // Value: 坩

Python:

char = '\u5769'
print(char)  # Output: 坩

Perl:

my $char = "\x{5769}";
print $char;  # Output: 坩

PHP:

$char = "\x{5769}";
echo $char;  // Output: 坩

Ruby:

char = "\u{5769}"
puts char  # Output: 坩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005769";  /* Display: 坩 */
}

HTML Decimal:

<p>HTML decimal: &#22377;</p>  <!-- Display: 坩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5769;</p>  <!-- Display: 坩 -->

URL Encoding:

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

Encodings

MD5:

bff3438d1094a02c6f53eb518f541917

SHA1:

935384b73693e39afb6a02dc9fb95165e29a9846

Base64:

5Z2p