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