C:
char c = '\u6080';
printf("%c\n", c); // Output: 悀
JavaScript:
const char = '\u6080';
console.log(char); // Output: 悀
Java:
char c = '\u6080';
System.out.println(c); // Output: 悀
JSON:
{"text": "\u6080"} // Value: 悀
Python:
char = '\u6080'
print(char) # Output: 悀
Perl:
my $char = "\x{6080}";
print $char; # Output: 悀
PHP:
$char = "\x{6080}";
echo $char; // Output: 悀
Ruby:
char = "\u{6080}"
puts char # Output: 悀
Rust:
let c = '\u{6080}';
println!("{}", c); // Output: 悀
Go:
char := '\u6080'
fmt.Printf("%c\n", char) // Output: 悀
CSS:
/* CSS content property */
.element::before {
content: "\006080"; /* 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=%E6%82%80
MD5:
994c7a9805af5e9a6823ccfcd41ae89a
SHA1:
0eda7995d53fa876222facaaa5cc5b9d2bc940b1
Base64:
5oKA