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