Unicode Finder

"坿" U+577F(CJK UNIFIED IDEOGRAPH-577F)

U+577F
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-577F

Programming

C
\u577F
JavaScript
\u577F
Java
\u577F
Json
\u577F
Python
\u577F
Perl
\x{577F}
PHP
\x{577F}
Ruby
\u{577F}
Rust
\u{577F}
Go
\u577F

Web

CSS
\00577F
HtmlDecimal
坿
HtmlHexadecimal
坿
Url
%E5%9D%BF

Code

MD5
017ebd480e041e0d463053deef1f1fbd
Sha1
69801aafc311a6046f958cd4fa755912071b381e
Base64
5Z2/

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u577F';
console.log(char);  // Output: 坿

Java:

char c = '\u577F';
System.out.println(c);  // Output: 坿

JSON:

{"text": "\u577F"}  // Value: 坿

Python:

char = '\u577F'
print(char)  # Output: 坿

Perl:

my $char = "\x{577F}";
print $char;  # Output: 坿

PHP:

$char = "\x{577F}";
echo $char;  // Output: 坿

Ruby:

char = "\u{577F}"
puts char  # Output: 坿

Rust:

let c = '\u{577F}';
println!("{}", c);  // Output: 坿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00577F";  /* Display: 坿 */
}

HTML Decimal:

<p>HTML decimal: &#22399;</p>  <!-- Display: 坿 -->

HTML Hexadecimal:

<p>HTML hex: &#x577F;</p>  <!-- Display: 坿 -->

URL Encoding:

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

Encodings

MD5:

017ebd480e041e0d463053deef1f1fbd

SHA1:

69801aafc311a6046f958cd4fa755912071b381e

Base64:

5Z2/