C:
char c = '\u1D13';
printf("%c\n", c); // Output: ᴓ
JavaScript:
const char = '\u1D13';
console.log(char); // Output: ᴓ
Java:
char c = '\u1D13';
System.out.println(c); // Output: ᴓ
JSON:
{"text": "\u1D13"} // Value: ᴓ
Python:
char = '\u1D13'
print(char) # Output: ᴓ
Perl:
my $char = "\x{1D13}";
print $char; # Output: ᴓ
PHP:
$char = "\x{1D13}";
echo $char; // Output: ᴓ
Ruby:
char = "\u{1D13}"
puts char # Output: ᴓ
Rust:
let c = '\u{1D13}';
println!("{}", c); // Output: ᴓ
Go:
char := '\u1D13'
fmt.Printf("%c\n", char) // Output: ᴓ
CSS:
/* CSS content property */
.element::before {
content: "\001D13"; /* 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%B4%93
MD5:
573d88a1defb95ae66646186d3078289
SHA1:
8d65565b2ec0e3efd058bf6df6388e4a060b5d90
Base64:
4bST