C:
char c = '\u0364';
printf("%c\n", c); // Output: ͤ
JavaScript:
const char = '\u0364';
console.log(char); // Output: ͤ
Java:
char c = '\u0364';
System.out.println(c); // Output: ͤ
JSON:
{"text": "\u0364"} // Value: ͤ
Python:
char = '\u0364'
print(char) # Output: ͤ
Perl:
my $char = "\x{0364}";
print $char; # Output: ͤ
PHP:
$char = "\x{0364}";
echo $char; // Output: ͤ
Ruby:
char = "\u{0364}"
puts char # Output: ͤ
Rust:
let c = '\u{364}';
println!("{}", c); // Output: ͤ
Go:
char := '\u0364'
fmt.Printf("%c\n", char) // Output: ͤ
CSS:
/* CSS content property */
.element::before {
content: "\000364"; /* 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%A4
MD5:
56ea6774e3a22983a07c61ec6c22b18b
SHA1:
ce739655795817c9ca81b4cbbe684fa352aaff04
Base64:
zaQ=