C:
char c = '\u0351';
printf("%c\n", c); // Output: ͑
JavaScript:
const char = '\u0351';
console.log(char); // Output: ͑
Java:
char c = '\u0351';
System.out.println(c); // Output: ͑
JSON:
{"text": "\u0351"} // Value: ͑
Python:
char = '\u0351'
print(char) # Output: ͑
Perl:
my $char = "\x{0351}";
print $char; # Output: ͑
PHP:
$char = "\x{0351}";
echo $char; // Output: ͑
Ruby:
char = "\u{0351}"
puts char # Output: ͑
Rust:
let c = '\u{351}';
println!("{}", c); // Output: ͑
Go:
char := '\u0351'
fmt.Printf("%c\n", char) // Output: ͑
CSS:
/* CSS content property */
.element::before {
content: "\000351"; /* 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%91
MD5:
69ffbbb1ddf40ddd5b7576f11d83dc7c
SHA1:
4819f7e18656c2feb81098a91adb99f84b83cf65
Base64:
zZE=