C:
char c = '\u0342';
printf("%c\n", c); // Output: ͂
JavaScript:
const char = '\u0342';
console.log(char); // Output: ͂
Java:
char c = '\u0342';
System.out.println(c); // Output: ͂
JSON:
{"text": "\u0342"} // Value: ͂
Python:
char = '\u0342'
print(char) # Output: ͂
Perl:
my $char = "\x{0342}";
print $char; # Output: ͂
PHP:
$char = "\x{0342}";
echo $char; // Output: ͂
Ruby:
char = "\u{0342}"
puts char # Output: ͂
Rust:
let c = '\u{342}';
println!("{}", c); // Output: ͂
Go:
char := '\u0342'
fmt.Printf("%c\n", char) // Output: ͂
CSS:
/* CSS content property */
.element::before {
content: "\000342"; /* 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%82
MD5:
c62a86e24ff3d810d6ecc54e7ef03cf9
SHA1:
916675a3f8b44f8fa0f6841fa34b46d17f6b08b6
Base64:
zYI=