C:
char c = '\u0368';
printf("%c\n", c); // Output: ͨ
JavaScript:
const char = '\u0368';
console.log(char); // Output: ͨ
Java:
char c = '\u0368';
System.out.println(c); // Output: ͨ
JSON:
{"text": "\u0368"} // Value: ͨ
Python:
char = '\u0368'
print(char) # Output: ͨ
Perl:
my $char = "\x{0368}";
print $char; # Output: ͨ
PHP:
$char = "\x{0368}";
echo $char; // Output: ͨ
Ruby:
char = "\u{0368}"
puts char # Output: ͨ
Rust:
let c = '\u{368}';
println!("{}", c); // Output: ͨ
Go:
char := '\u0368'
fmt.Printf("%c\n", char) // Output: ͨ
CSS:
/* CSS content property */
.element::before {
content: "\000368"; /* 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%A8
MD5:
cfbc26b202f44e71c8a5a0e9f80475c5
SHA1:
97847874481cf8e760101c382f70298b78c96deb
Base64:
zag=