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