C:
char c = '\u0487';
printf("%c\n", c); // Output: ҇
JavaScript:
const char = '\u0487';
console.log(char); // Output: ҇
Java:
char c = '\u0487';
System.out.println(c); // Output: ҇
JSON:
{"text": "\u0487"} // Value: ҇
Python:
char = '\u0487'
print(char) # Output: ҇
Perl:
my $char = "\x{0487}";
print $char; # Output: ҇
PHP:
$char = "\x{0487}";
echo $char; // Output: ҇
Ruby:
char = "\u{0487}"
puts char # Output: ҇
Rust:
let c = '\u{487}';
println!("{}", c); // Output: ҇
Go:
char := '\u0487'
fmt.Printf("%c\n", char) // Output: ҇
CSS:
/* CSS content property */
.element::before {
content: "\000487"; /* 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%87
MD5:
71d207e5d07e1f7ba69ebc66fcae02ea
SHA1:
d469bf465879b327692850547ac89fd1a531af6f
Base64:
0oc=