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