C:
char c = '\u0348';
printf("%c\n", c); // Output: ͈
JavaScript:
const char = '\u0348';
console.log(char); // Output: ͈
Java:
char c = '\u0348';
System.out.println(c); // Output: ͈
JSON:
{"text": "\u0348"} // Value: ͈
Python:
char = '\u0348'
print(char) # Output: ͈
Perl:
my $char = "\x{0348}";
print $char; # Output: ͈
PHP:
$char = "\x{0348}";
echo $char; // Output: ͈
Ruby:
char = "\u{0348}"
puts char # Output: ͈
Rust:
let c = '\u{348}';
println!("{}", c); // Output: ͈
Go:
char := '\u0348'
fmt.Printf("%c\n", char) // Output: ͈
CSS:
/* CSS content property */
.element::before {
content: "\000348"; /* 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%88
MD5:
778649ff563c555311b81fda81736cc7
SHA1:
2542a8cd1ec84149d4ef6f86b3acfb31aea2e09d
Base64:
zYg=