C:
char c = '\u0335';
printf("%c\n", c); // Output: ̵
JavaScript:
const char = '\u0335';
console.log(char); // Output: ̵
Java:
char c = '\u0335';
System.out.println(c); // Output: ̵
JSON:
{"text": "\u0335"} // Value: ̵
Python:
char = '\u0335'
print(char) # Output: ̵
Perl:
my $char = "\x{0335}";
print $char; # Output: ̵
PHP:
$char = "\x{0335}";
echo $char; // Output: ̵
Ruby:
char = "\u{0335}"
puts char # Output: ̵
Rust:
let c = '\u{335}';
println!("{}", c); // Output: ̵
Go:
char := '\u0335'
fmt.Printf("%c\n", char) // Output: ̵
CSS:
/* CSS content property */
.element::before {
content: "\000335"; /* 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%B5
MD5:
888bba71adf1aedfe1efb77533597673
SHA1:
292611e5dd261e5f1f21ffa36712c40366b119f6
Base64:
zLU=