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