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