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