C:
char c = '\u0498';
printf("%c\n", c); // Output: Ҙ
JavaScript:
const char = '\u0498';
console.log(char); // Output: Ҙ
Java:
char c = '\u0498';
System.out.println(c); // Output: Ҙ
JSON:
{"text": "\u0498"} // Value: Ҙ
Python:
char = '\u0498'
print(char) # Output: Ҙ
Perl:
my $char = "\x{0498}";
print $char; # Output: Ҙ
PHP:
$char = "\x{0498}";
echo $char; // Output: Ҙ
Ruby:
char = "\u{0498}"
puts char # Output: Ҙ
Rust:
let c = '\u{498}';
println!("{}", c); // Output: Ҙ
Go:
char := '\u0498'
fmt.Printf("%c\n", char) // Output: Ҙ
CSS:
/* CSS content property */
.element::before {
content: "\000498"; /* 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%98
MD5:
0321510bf2d52945368fc5d55850ae46
SHA1:
b3cf0993e7abdddcf0d0320e9b0740a29951a7be
Base64:
0pg=