C:
char c = '\u0358';
printf("%c\n", c); // Output: ͘
JavaScript:
const char = '\u0358';
console.log(char); // Output: ͘
Java:
char c = '\u0358';
System.out.println(c); // Output: ͘
JSON:
{"text": "\u0358"} // Value: ͘
Python:
char = '\u0358'
print(char) # Output: ͘
Perl:
my $char = "\x{0358}";
print $char; # Output: ͘
PHP:
$char = "\x{0358}";
echo $char; // Output: ͘
Ruby:
char = "\u{0358}"
puts char # Output: ͘
Rust:
let c = '\u{358}';
println!("{}", c); // Output: ͘
Go:
char := '\u0358'
fmt.Printf("%c\n", char) // Output: ͘
CSS:
/* CSS content property */
.element::before {
content: "\000358"; /* 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%98
MD5:
e3974a947fb77f990adca75a8e24bc1a
SHA1:
d7ffc76f9351d78fcd0f923c7e8bba7af6655bc0
Base64:
zZg=