C:
char c = '\u0312';
printf("%c\n", c); // Output: ̒
JavaScript:
const char = '\u0312';
console.log(char); // Output: ̒
Java:
char c = '\u0312';
System.out.println(c); // Output: ̒
JSON:
{"text": "\u0312"} // Value: ̒
Python:
char = '\u0312'
print(char) # Output: ̒
Perl:
my $char = "\x{0312}";
print $char; # Output: ̒
PHP:
$char = "\x{0312}";
echo $char; // Output: ̒
Ruby:
char = "\u{0312}"
puts char # Output: ̒
Rust:
let c = '\u{312}';
println!("{}", c); // Output: ̒
Go:
char := '\u0312'
fmt.Printf("%c\n", char) // Output: ̒
CSS:
/* CSS content property */
.element::before {
content: "\000312"; /* 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%92
MD5:
ef66cf024bd0eb456db8829cd137ded0
SHA1:
43477181a1a7f6fff7ce67415c45654abf87ad7b
Base64:
zJI=