C:
char c = '\u036A';
printf("%c\n", c); // Output: ͪ
JavaScript:
const char = '\u036A';
console.log(char); // Output: ͪ
Java:
char c = '\u036A';
System.out.println(c); // Output: ͪ
JSON:
{"text": "\u036A"} // Value: ͪ
Python:
char = '\u036A'
print(char) # Output: ͪ
Perl:
my $char = "\x{036A}";
print $char; # Output: ͪ
PHP:
$char = "\x{036A}";
echo $char; // Output: ͪ
Ruby:
char = "\u{036A}"
puts char # Output: ͪ
Rust:
let c = '\u{36A}';
println!("{}", c); // Output: ͪ
Go:
char := '\u036A'
fmt.Printf("%c\n", char) // Output: ͪ
CSS:
/* CSS content property */
.element::before {
content: "\00036A"; /* 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%AA
MD5:
0cf4a1424c0fceeb22b2d81e30a3352b
SHA1:
9d7976daa324e207b2fd4072bbfd4e746b918549
Base64:
zao=