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