C:
char c = '\u1616';
printf("%c\n", c); // Output: ᘖ
JavaScript:
const char = '\u1616';
console.log(char); // Output: ᘖ
Java:
char c = '\u1616';
System.out.println(c); // Output: ᘖ
JSON:
{"text": "\u1616"} // Value: ᘖ
Python:
char = '\u1616'
print(char) # Output: ᘖ
Perl:
my $char = "\x{1616}";
print $char; # Output: ᘖ
PHP:
$char = "\x{1616}";
echo $char; // Output: ᘖ
Ruby:
char = "\u{1616}"
puts char # Output: ᘖ
Rust:
let c = '\u{1616}';
println!("{}", c); // Output: ᘖ
Go:
char := '\u1616'
fmt.Printf("%c\n", char) // Output: ᘖ
CSS:
/* CSS content property */
.element::before {
content: "\001616"; /* 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=%E1%98%96
MD5:
7ae79e3ba207ff9d912d0c66fe0a6575
SHA1:
1d94f791353f5417e259dacbbdb96e352198a8ee
Base64:
4ZiW