C:
char c = '\u5680';
printf("%c\n", c); // Output: 嚀
JavaScript:
const char = '\u5680';
console.log(char); // Output: 嚀
Java:
char c = '\u5680';
System.out.println(c); // Output: 嚀
JSON:
{"text": "\u5680"} // Value: 嚀
Python:
char = '\u5680'
print(char) # Output: 嚀
Perl:
my $char = "\x{5680}";
print $char; # Output: 嚀
PHP:
$char = "\x{5680}";
echo $char; // Output: 嚀
Ruby:
char = "\u{5680}"
puts char # Output: 嚀
Rust:
let c = '\u{5680}';
println!("{}", c); // Output: 嚀
Go:
char := '\u5680'
fmt.Printf("%c\n", char) // Output: 嚀
CSS:
/* CSS content property */
.element::before {
content: "\005680"; /* 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%9A%80
MD5:
ff4de2927d57e736826adf279ffc26cc
SHA1:
96b3a846c28217c0ad30b63ad1bc9a9e77eada8c
Base64:
5ZqA