C:
char c = '\u0303';
printf("%c\n", c); // Output: ̃
JavaScript:
const char = '\u0303';
console.log(char); // Output: ̃
Java:
char c = '\u0303';
System.out.println(c); // Output: ̃
JSON:
{"text": "\u0303"} // Value: ̃
Python:
char = '\u0303'
print(char) # Output: ̃
Perl:
my $char = "\x{0303}";
print $char; # Output: ̃
PHP:
$char = "\x{0303}";
echo $char; // Output: ̃
Ruby:
char = "\u{0303}"
puts char # Output: ̃
Rust:
let c = '\u{303}';
println!("{}", c); // Output: ̃
Go:
char := '\u0303'
fmt.Printf("%c\n", char) // Output: ̃
CSS:
/* CSS content property */
.element::before {
content: "\000303"; /* 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%83
MD5:
ac016046b9fce0311390a272e7458b29
SHA1:
42dc9d3093cc7df5b6d4f489acf63680fb1a9fb1
Base64:
zIM=