C:
char c = '\u04EC';
printf("%c\n", c); // Output: Ӭ
JavaScript:
const char = '\u04EC';
console.log(char); // Output: Ӭ
Java:
char c = '\u04EC';
System.out.println(c); // Output: Ӭ
JSON:
{"text": "\u04EC"} // Value: Ӭ
Python:
char = '\u04EC'
print(char) # Output: Ӭ
Perl:
my $char = "\x{04EC}";
print $char; # Output: Ӭ
PHP:
$char = "\x{04EC}";
echo $char; // Output: Ӭ
Ruby:
char = "\u{04EC}"
puts char # Output: Ӭ
Rust:
let c = '\u{4EC}';
println!("{}", c); // Output: Ӭ
Go:
char := '\u04EC'
fmt.Printf("%c\n", char) // Output: Ӭ
CSS:
/* CSS content property */
.element::before {
content: "\0004EC"; /* 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=%D3%AC
MD5:
367c303df21a8145e019e250492075a5
SHA1:
ddc3a05853abb487e61794db0b6d630e7d641702
Base64:
06w=