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