C:
char c = '\u8081';
printf("%c\n", c); // Output: 肁
JavaScript:
const char = '\u8081';
console.log(char); // Output: 肁
Java:
char c = '\u8081';
System.out.println(c); // Output: 肁
JSON:
{"text": "\u8081"} // Value: 肁
Python:
char = '\u8081'
print(char) # Output: 肁
Perl:
my $char = "\x{8081}";
print $char; # Output: 肁
PHP:
$char = "\x{8081}";
echo $char; // Output: 肁
Ruby:
char = "\u{8081}"
puts char # Output: 肁
Rust:
let c = '\u{8081}';
println!("{}", c); // Output: 肁
Go:
char := '\u8081'
fmt.Printf("%c\n", char) // Output: 肁
CSS:
/* CSS content property */
.element::before {
content: "\008081"; /* 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=%E8%82%81
MD5:
0af4e14c965dc2dcb5d2000931f6d7ae
SHA1:
fd8867ac3c9db842a67e141da6ad3cc4297c915f
Base64:
6IKB