C:
char c = '\u0499';
printf("%c\n", c); // Output: ҙ
JavaScript:
const char = '\u0499';
console.log(char); // Output: ҙ
Java:
char c = '\u0499';
System.out.println(c); // Output: ҙ
JSON:
{"text": "\u0499"} // Value: ҙ
Python:
char = '\u0499'
print(char) # Output: ҙ
Perl:
my $char = "\x{0499}";
print $char; # Output: ҙ
PHP:
$char = "\x{0499}";
echo $char; // Output: ҙ
Ruby:
char = "\u{0499}"
puts char # Output: ҙ
Rust:
let c = '\u{499}';
println!("{}", c); // Output: ҙ
Go:
char := '\u0499'
fmt.Printf("%c\n", char) // Output: ҙ
CSS:
/* CSS content property */
.element::before {
content: "\000499"; /* 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%99
MD5:
f415c8f2539f1325dce4d0b376c8a4d2
SHA1:
eaff0fda22b75fcc9f9bd6b9081b6662c60cb01c
Base64:
0pk=