C:
char c = '\u0357';
printf("%c\n", c); // Output: ͗
JavaScript:
const char = '\u0357';
console.log(char); // Output: ͗
Java:
char c = '\u0357';
System.out.println(c); // Output: ͗
JSON:
{"text": "\u0357"} // Value: ͗
Python:
char = '\u0357'
print(char) # Output: ͗
Perl:
my $char = "\x{0357}";
print $char; # Output: ͗
PHP:
$char = "\x{0357}";
echo $char; // Output: ͗
Ruby:
char = "\u{0357}"
puts char # Output: ͗
Rust:
let c = '\u{357}';
println!("{}", c); // Output: ͗
Go:
char := '\u0357'
fmt.Printf("%c\n", char) // Output: ͗
CSS:
/* CSS content property */
.element::before {
content: "\000357"; /* 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%97
MD5:
eb293f461f2332cd67810d348f086cb9
SHA1:
e74cd04fb1b8813db889d0051579e8b8579ea790
Base64:
zZc=