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