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