C:
char c = '\u1618';
printf("%c\n", c); // Output: ᘘ
JavaScript:
const char = '\u1618';
console.log(char); // Output: ᘘ
Java:
char c = '\u1618';
System.out.println(c); // Output: ᘘ
JSON:
{"text": "\u1618"} // Value: ᘘ
Python:
char = '\u1618'
print(char) # Output: ᘘ
Perl:
my $char = "\x{1618}";
print $char; # Output: ᘘ
PHP:
$char = "\x{1618}";
echo $char; // Output: ᘘ
Ruby:
char = "\u{1618}"
puts char # Output: ᘘ
Rust:
let c = '\u{1618}';
println!("{}", c); // Output: ᘘ
Go:
char := '\u1618'
fmt.Printf("%c\n", char) // Output: ᘘ
CSS:
/* CSS content property */
.element::before {
content: "\001618"; /* 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%98
MD5:
5e99479b3d735ac97a04b8de92904a00
SHA1:
edc158c08b24b71389d404fbc8166057df55d352
Base64:
4ZiY