C:
char c = '\u0316';
printf("%c\n", c); // Output: ̖
JavaScript:
const char = '\u0316';
console.log(char); // Output: ̖
Java:
char c = '\u0316';
System.out.println(c); // Output: ̖
JSON:
{"text": "\u0316"} // Value: ̖
Python:
char = '\u0316'
print(char) # Output: ̖
Perl:
my $char = "\x{0316}";
print $char; # Output: ̖
PHP:
$char = "\x{0316}";
echo $char; // Output: ̖
Ruby:
char = "\u{0316}"
puts char # Output: ̖
Rust:
let c = '\u{316}';
println!("{}", c); // Output: ̖
Go:
char := '\u0316'
fmt.Printf("%c\n", char) // Output: ̖
CSS:
/* CSS content property */
.element::before {
content: "\000316"; /* 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%96
MD5:
2875a6840c16063b8089b12acdba6228
SHA1:
41cecd5a337deffcfbd7526c00b4606f04c68157
Base64:
zJY=