C:
char c = '\u048D';
printf("%c\n", c); // Output: ҍ
JavaScript:
const char = '\u048D';
console.log(char); // Output: ҍ
Java:
char c = '\u048D';
System.out.println(c); // Output: ҍ
JSON:
{"text": "\u048D"} // Value: ҍ
Python:
char = '\u048D'
print(char) # Output: ҍ
Perl:
my $char = "\x{048D}";
print $char; # Output: ҍ
PHP:
$char = "\x{048D}";
echo $char; // Output: ҍ
Ruby:
char = "\u{048D}"
puts char # Output: ҍ
Rust:
let c = '\u{48D}';
println!("{}", c); // Output: ҍ
Go:
char := '\u048D'
fmt.Printf("%c\n", char) // Output: ҍ
CSS:
/* CSS content property */
.element::before {
content: "\00048D"; /* 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=%D2%8D
MD5:
688290aea86d7d05d29c1afa6ff43805
SHA1:
d69c45b4205e3b01ac085e8b64e652f1463e6d72
Base64:
0o0=