C:
char c = '\u570C';
printf("%c\n", c); // Output: 圌
JavaScript:
const char = '\u570C';
console.log(char); // Output: 圌
Java:
char c = '\u570C';
System.out.println(c); // Output: 圌
JSON:
{"text": "\u570C"} // Value: 圌
Python:
char = '\u570C'
print(char) # Output: 圌
Perl:
my $char = "\x{570C}";
print $char; # Output: 圌
PHP:
$char = "\x{570C}";
echo $char; // Output: 圌
Ruby:
char = "\u{570C}"
puts char # Output: 圌
Rust:
let c = '\u{570C}';
println!("{}", c); // Output: 圌
Go:
char := '\u570C'
fmt.Printf("%c\n", char) // Output: 圌
CSS:
/* CSS content property */
.element::before {
content: "\00570C"; /* Display: 圌 */
}
HTML Decimal:
<p>HTML decimal: 圌</p> <!-- Display: 圌 -->
HTML Hexadecimal:
<p>HTML hex: 圌</p> <!-- Display: 圌 -->
URL Encoding:
// 圌 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%8C
MD5:
0484f06ae64b5f5cdc2fc4581940e09a
SHA1:
fe1f7e0db2ccceee967b67246f9c096c25c6f3b5
Base64:
5ZyM