C:
char c = '\u6081';
printf("%c\n", c); // Output: 悁
JavaScript:
const char = '\u6081';
console.log(char); // Output: 悁
Java:
char c = '\u6081';
System.out.println(c); // Output: 悁
JSON:
{"text": "\u6081"} // Value: 悁
Python:
char = '\u6081'
print(char) # Output: 悁
Perl:
my $char = "\x{6081}";
print $char; # Output: 悁
PHP:
$char = "\x{6081}";
echo $char; // Output: 悁
Ruby:
char = "\u{6081}"
puts char # Output: 悁
Rust:
let c = '\u{6081}';
println!("{}", c); // Output: 悁
Go:
char := '\u6081'
fmt.Printf("%c\n", char) // Output: 悁
CSS:
/* CSS content property */
.element::before {
content: "\006081"; /* 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%81
MD5:
de73ab654f515d43ade7288b4aad8f83
SHA1:
7a4f4369b76fd9956a2134c6fa6dd08738037ccd
Base64:
5oKB