C:
char c = '\u0369';
printf("%c\n", c); // Output: ͩ
JavaScript:
const char = '\u0369';
console.log(char); // Output: ͩ
Java:
char c = '\u0369';
System.out.println(c); // Output: ͩ
JSON:
{"text": "\u0369"} // Value: ͩ
Python:
char = '\u0369'
print(char) # Output: ͩ
Perl:
my $char = "\x{0369}";
print $char; # Output: ͩ
PHP:
$char = "\x{0369}";
echo $char; // Output: ͩ
Ruby:
char = "\u{0369}"
puts char # Output: ͩ
Rust:
let c = '\u{369}';
println!("{}", c); // Output: ͩ
Go:
char := '\u0369'
fmt.Printf("%c\n", char) // Output: ͩ
CSS:
/* CSS content property */
.element::before {
content: "\000369"; /* 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%A9
MD5:
0dc03b4607fdaa81ed9d1683bc27b622
SHA1:
1076ae1c22618927e806d49ee2bcf0858358e267
Base64:
zak=