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