C:
char c = '\u031D';
printf("%c\n", c); // Output: ̝
JavaScript:
const char = '\u031D';
console.log(char); // Output: ̝
Java:
char c = '\u031D';
System.out.println(c); // Output: ̝
JSON:
{"text": "\u031D"} // Value: ̝
Python:
char = '\u031D'
print(char) # Output: ̝
Perl:
my $char = "\x{031D}";
print $char; # Output: ̝
PHP:
$char = "\x{031D}";
echo $char; // Output: ̝
Ruby:
char = "\u{031D}"
puts char # Output: ̝
Rust:
let c = '\u{31D}';
println!("{}", c); // Output: ̝
Go:
char := '\u031D'
fmt.Printf("%c\n", char) // Output: ̝
CSS:
/* CSS content property */
.element::before {
content: "\00031D"; /* 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=%CC%9D
MD5:
d5eae8477204079a8952beab8d32fcd9
SHA1:
ecde703ba37f71c2380ae8b2c5a252eef9b43f48
Base64:
zJ0=