C:
char c = '\u033F';
printf("%c\n", c); // Output: ̿
JavaScript:
const char = '\u033F';
console.log(char); // Output: ̿
Java:
char c = '\u033F';
System.out.println(c); // Output: ̿
JSON:
{"text": "\u033F"} // Value: ̿
Python:
char = '\u033F'
print(char) # Output: ̿
Perl:
my $char = "\x{033F}";
print $char; # Output: ̿
PHP:
$char = "\x{033F}";
echo $char; // Output: ̿
Ruby:
char = "\u{033F}"
puts char # Output: ̿
Rust:
let c = '\u{33F}';
println!("{}", c); // Output: ̿
Go:
char := '\u033F'
fmt.Printf("%c\n", char) // Output: ̿
CSS:
/* CSS content property */
.element::before {
content: "\00033F"; /* 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%BF
MD5:
7567032ce9026cb347b3e1878ed0eea7
SHA1:
e9f29f3e61cc69509817ee43f53a384b798b7e91
Base64:
zL8=