Unicode Finder

"坷" U+5777(CJK UNIFIED IDEOGRAPH-5777)

U+5777
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5777

Programming

C
\u5777
JavaScript
\u5777
Java
\u5777
Json
\u5777
Python
\u5777
Perl
\x{5777}
PHP
\x{5777}
Ruby
\u{5777}
Rust
\u{5777}
Go
\u5777

Web

CSS
\005777
HtmlDecimal
坷
HtmlHexadecimal
坷
Url
%E5%9D%B7

Code

MD5
6e0b547963d3d29093a188ca1f52c671
Sha1
dbf31733f42a60efb72f787e667a186c0188b73f
Base64
5Z23

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5777';
console.log(char);  // Output: 坷

Java:

char c = '\u5777';
System.out.println(c);  // Output: 坷

JSON:

{"text": "\u5777"}  // Value: 坷

Python:

char = '\u5777'
print(char)  # Output: 坷

Perl:

my $char = "\x{5777}";
print $char;  # Output: 坷

PHP:

$char = "\x{5777}";
echo $char;  // Output: 坷

Ruby:

char = "\u{5777}"
puts char  # Output: 坷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005777";  /* Display: 坷 */
}

HTML Decimal:

<p>HTML decimal: &#22391;</p>  <!-- Display: 坷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5777;</p>  <!-- Display: 坷 -->

URL Encoding:

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

Encodings

MD5:

6e0b547963d3d29093a188ca1f52c671

SHA1:

dbf31733f42a60efb72f787e667a186c0188b73f

Base64:

5Z23