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