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