C:
char c = '\u0331';
printf("%c\n", c); // Output: ̱
JavaScript:
const char = '\u0331';
console.log(char); // Output: ̱
Java:
char c = '\u0331';
System.out.println(c); // Output: ̱
JSON:
{"text": "\u0331"} // Value: ̱
Python:
char = '\u0331'
print(char) # Output: ̱
Perl:
my $char = "\x{0331}";
print $char; # Output: ̱
PHP:
$char = "\x{0331}";
echo $char; // Output: ̱
Ruby:
char = "\u{0331}"
puts char # Output: ̱
Rust:
let c = '\u{331}';
println!("{}", c); // Output: ̱
Go:
char := '\u0331'
fmt.Printf("%c\n", char) // Output: ̱
CSS:
/* CSS content property */
.element::before {
content: "\000331"; /* 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%B1
MD5:
e979dfafdec6f2f3ff77677fdb699dd9
SHA1:
8193e28337194b2666a760017c153f0526fd8980
Base64:
zLE=