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