C:
char c = '\u0484';
printf("%c\n", c); // Output: ҄
JavaScript:
const char = '\u0484';
console.log(char); // Output: ҄
Java:
char c = '\u0484';
System.out.println(c); // Output: ҄
JSON:
{"text": "\u0484"} // Value: ҄
Python:
char = '\u0484'
print(char) # Output: ҄
Perl:
my $char = "\x{0484}";
print $char; # Output: ҄
PHP:
$char = "\x{0484}";
echo $char; // Output: ҄
Ruby:
char = "\u{0484}"
puts char # Output: ҄
Rust:
let c = '\u{484}';
println!("{}", c); // Output: ҄
Go:
char := '\u0484'
fmt.Printf("%c\n", char) // Output: ҄
CSS:
/* CSS content property */
.element::before {
content: "\000484"; /* 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%84
MD5:
98d59333fbd28e8312ab790e0da0c6fd
SHA1:
cdecf3142e7a53f5c3f11249a7b87e9d061328d9
Base64:
0oQ=