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