C:
char c = '\u0314';
printf("%c\n", c); // Output: ̔
JavaScript:
const char = '\u0314';
console.log(char); // Output: ̔
Java:
char c = '\u0314';
System.out.println(c); // Output: ̔
JSON:
{"text": "\u0314"} // Value: ̔
Python:
char = '\u0314'
print(char) # Output: ̔
Perl:
my $char = "\x{0314}";
print $char; # Output: ̔
PHP:
$char = "\x{0314}";
echo $char; // Output: ̔
Ruby:
char = "\u{0314}"
puts char # Output: ̔
Rust:
let c = '\u{314}';
println!("{}", c); // Output: ̔
Go:
char := '\u0314'
fmt.Printf("%c\n", char) // Output: ̔
CSS:
/* CSS content property */
.element::before {
content: "\000314"; /* 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%94
MD5:
16ce00ce3944c7ddeb1806e7d3a86e45
SHA1:
a974a86fa373dae13bf7f217e5732b5e8d767639
Base64:
zJQ=