C:
char c = '\u0365';
printf("%c\n", c); // Output: ͥ
JavaScript:
const char = '\u0365';
console.log(char); // Output: ͥ
Java:
char c = '\u0365';
System.out.println(c); // Output: ͥ
JSON:
{"text": "\u0365"} // Value: ͥ
Python:
char = '\u0365'
print(char) # Output: ͥ
Perl:
my $char = "\x{0365}";
print $char; # Output: ͥ
PHP:
$char = "\x{0365}";
echo $char; // Output: ͥ
Ruby:
char = "\u{0365}"
puts char # Output: ͥ
Rust:
let c = '\u{365}';
println!("{}", c); // Output: ͥ
Go:
char := '\u0365'
fmt.Printf("%c\n", char) // Output: ͥ
CSS:
/* CSS content property */
.element::before {
content: "\000365"; /* 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%A5
MD5:
532f2c043a53318e91c7b94d4de58b55
SHA1:
8601ca4df08bb3b407d25ac8d35f483eb285e4f1
Base64:
zaU=