C:
char c = '\u0345';
printf("%c\n", c); // Output: ͅ
JavaScript:
const char = '\u0345';
console.log(char); // Output: ͅ
Java:
char c = '\u0345';
System.out.println(c); // Output: ͅ
JSON:
{"text": "\u0345"} // Value: ͅ
Python:
char = '\u0345'
print(char) # Output: ͅ
Perl:
my $char = "\x{0345}";
print $char; # Output: ͅ
PHP:
$char = "\x{0345}";
echo $char; // Output: ͅ
Ruby:
char = "\u{0345}"
puts char # Output: ͅ
Rust:
let c = '\u{345}';
println!("{}", c); // Output: ͅ
Go:
char := '\u0345'
fmt.Printf("%c\n", char) // Output: ͅ
CSS:
/* CSS content property */
.element::before {
content: "\000345"; /* 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%85
MD5:
b830d19d691e390dfb777890cdf1b4da
SHA1:
a907d47f42fba495a3e9512114dbd89ac8f0f689
Base64:
zYU=