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