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