C:
char c = '\u0482';
printf("%c\n", c); // Output: ҂
JavaScript:
const char = '\u0482';
console.log(char); // Output: ҂
Java:
char c = '\u0482';
System.out.println(c); // Output: ҂
JSON:
{"text": "\u0482"} // Value: ҂
Python:
char = '\u0482'
print(char) # Output: ҂
Perl:
my $char = "\x{0482}";
print $char; # Output: ҂
PHP:
$char = "\x{0482}";
echo $char; // Output: ҂
Ruby:
char = "\u{0482}"
puts char # Output: ҂
Rust:
let c = '\u{482}';
println!("{}", c); // Output: ҂
Go:
char := '\u0482'
fmt.Printf("%c\n", char) // Output: ҂
CSS:
/* CSS content property */
.element::before {
content: "\000482"; /* 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%82
MD5:
416ef4ca48aa7b9c4ec263d8d89ed65d
SHA1:
6af213f0e5b56f7beed637bfb7e2db1803c31ac1
Base64:
0oI=