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