C:
char c = '\u6EEE';
printf("%c\n", c); // Output: 滮
JavaScript:
const char = '\u6EEE';
console.log(char); // Output: 滮
Java:
char c = '\u6EEE';
System.out.println(c); // Output: 滮
JSON:
{"text": "\u6EEE"} // Value: 滮
Python:
char = '\u6EEE'
print(char) # Output: 滮
Perl:
my $char = "\x{6EEE}";
print $char; # Output: 滮
PHP:
$char = "\x{6EEE}";
echo $char; // Output: 滮
Ruby:
char = "\u{6EEE}"
puts char # Output: 滮
Rust:
let c = '\u{6EEE}';
println!("{}", c); // Output: 滮
Go:
char := '\u6EEE'
fmt.Printf("%c\n", char) // Output: 滮
CSS:
/* CSS content property */
.element::before {
content: "\006EEE"; /* 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%BB%AE
MD5:
ed8a83fbdeea252c3270c0ed51457ec8
SHA1:
c78d7d644dcdb009413c98f00130ce57071874c2
Base64:
5ruu