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