C:
char c = '\u0333';
printf("%c\n", c); // Output: ̳
JavaScript:
const char = '\u0333';
console.log(char); // Output: ̳
Java:
char c = '\u0333';
System.out.println(c); // Output: ̳
JSON:
{"text": "\u0333"} // Value: ̳
Python:
char = '\u0333'
print(char) # Output: ̳
Perl:
my $char = "\x{0333}";
print $char; # Output: ̳
PHP:
$char = "\x{0333}";
echo $char; // Output: ̳
Ruby:
char = "\u{0333}"
puts char # Output: ̳
Rust:
let c = '\u{333}';
println!("{}", c); // Output: ̳
Go:
char := '\u0333'
fmt.Printf("%c\n", char) // Output: ̳
CSS:
/* CSS content property */
.element::before {
content: "\000333"; /* 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%B3
MD5:
1e1c24a94123c567b244dd7dcc943d0d
SHA1:
1c47dd47caccc7248943dae126b863c886f0f1ed
Base64:
zLM=