C:
char c = '\u8128';
printf("%c\n", c); // Output: 脨
JavaScript:
const char = '\u8128';
console.log(char); // Output: 脨
Java:
char c = '\u8128';
System.out.println(c); // Output: 脨
JSON:
{"text": "\u8128"} // Value: 脨
Python:
char = '\u8128'
print(char) # Output: 脨
Perl:
my $char = "\x{8128}";
print $char; # Output: 脨
PHP:
$char = "\x{8128}";
echo $char; // Output: 脨
Ruby:
char = "\u{8128}"
puts char # Output: 脨
Rust:
let c = '\u{8128}';
println!("{}", c); // Output: 脨
Go:
char := '\u8128'
fmt.Printf("%c\n", char) // Output: 脨
CSS:
/* CSS content property */
.element::before {
content: "\008128"; /* 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%84%A8
MD5:
c0d6e5856318a377880be834d86ecb08
SHA1:
db107e6a9967c66a11922e9207c974705ef945d7
Base64:
6ISo