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