C:
char c = '\u0352';
printf("%c\n", c); // Output: ͒
JavaScript:
const char = '\u0352';
console.log(char); // Output: ͒
Java:
char c = '\u0352';
System.out.println(c); // Output: ͒
JSON:
{"text": "\u0352"} // Value: ͒
Python:
char = '\u0352'
print(char) # Output: ͒
Perl:
my $char = "\x{0352}";
print $char; # Output: ͒
PHP:
$char = "\x{0352}";
echo $char; // Output: ͒
Ruby:
char = "\u{0352}"
puts char # Output: ͒
Rust:
let c = '\u{352}';
println!("{}", c); // Output: ͒
Go:
char := '\u0352'
fmt.Printf("%c\n", char) // Output: ͒
CSS:
/* CSS content property */
.element::before {
content: "\000352"; /* 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=%CD%92
MD5:
b41efef0f61f13995daa2f06fe90d03f
SHA1:
2c165c45110442a611d26a93f7691481327fda29
Base64:
zZI=