C:
char c = '\u0363';
printf("%c\n", c); // Output: ͣ
JavaScript:
const char = '\u0363';
console.log(char); // Output: ͣ
Java:
char c = '\u0363';
System.out.println(c); // Output: ͣ
JSON:
{"text": "\u0363"} // Value: ͣ
Python:
char = '\u0363'
print(char) # Output: ͣ
Perl:
my $char = "\x{0363}";
print $char; # Output: ͣ
PHP:
$char = "\x{0363}";
echo $char; // Output: ͣ
Ruby:
char = "\u{0363}"
puts char # Output: ͣ
Rust:
let c = '\u{363}';
println!("{}", c); // Output: ͣ
Go:
char := '\u0363'
fmt.Printf("%c\n", char) // Output: ͣ
CSS:
/* CSS content property */
.element::before {
content: "\000363"; /* 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%A3
MD5:
419198186e6d7cd2a7bb747653126b6d
SHA1:
58ff375d7b58b87d45445fe3c90631964730a4cc
Base64:
zaM=