Unicode Finder

"垬" U+57AC(CJK UNIFIED IDEOGRAPH-57AC)

U+57AC
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-57AC

Programming

C
\u57AC
JavaScript
\u57AC
Java
\u57AC
Json
\u57AC
Python
\u57AC
Perl
\x{57AC}
PHP
\x{57AC}
Ruby
\u{57AC}
Rust
\u{57AC}
Go
\u57AC

Web

CSS
\0057AC
HtmlDecimal
垬
HtmlHexadecimal
垬
Url
%E5%9E%AC

Code

MD5
2832cd0599665647725dac9a3b100293
Sha1
26f82b84d9bd0289cdd612faff48b1791bd6d31c
Base64
5Z6s

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u57AC';
console.log(char);  // Output: 垬

Java:

char c = '\u57AC';
System.out.println(c);  // Output: 垬

JSON:

{"text": "\u57AC"}  // Value: 垬

Python:

char = '\u57AC'
print(char)  # Output: 垬

Perl:

my $char = "\x{57AC}";
print $char;  # Output: 垬

PHP:

$char = "\x{57AC}";
echo $char;  // Output: 垬

Ruby:

char = "\u{57AC}"
puts char  # Output: 垬

Rust:

let c = '\u{57AC}';
println!("{}", c);  // Output: 垬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0057AC";  /* Display: 垬 */
}

HTML Decimal:

<p>HTML decimal: &#22444;</p>  <!-- Display: 垬 -->

HTML Hexadecimal:

<p>HTML hex: &#x57AC;</p>  <!-- Display: 垬 -->

URL Encoding:

// 垬 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%AC

Encodings

MD5:

2832cd0599665647725dac9a3b100293

SHA1:

26f82b84d9bd0289cdd612faff48b1791bd6d31c

Base64:

5Z6s