C:
char c = '\u0329';
printf("%c\n", c); // Output: ̩
JavaScript:
const char = '\u0329';
console.log(char); // Output: ̩
Java:
char c = '\u0329';
System.out.println(c); // Output: ̩
JSON:
{"text": "\u0329"} // Value: ̩
Python:
char = '\u0329'
print(char) # Output: ̩
Perl:
my $char = "\x{0329}";
print $char; # Output: ̩
PHP:
$char = "\x{0329}";
echo $char; // Output: ̩
Ruby:
char = "\u{0329}"
puts char # Output: ̩
Rust:
let c = '\u{329}';
println!("{}", c); // Output: ̩
Go:
char := '\u0329'
fmt.Printf("%c\n", char) // Output: ̩
CSS:
/* CSS content property */
.element::before {
content: "\000329"; /* 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%A9
MD5:
2eed517d8fc1a3a0f7a4ecae61eb4d70
SHA1:
2247bc437608314875a1c14510f18def2e1ac4b2
Base64:
zKk=