C:
char c = '\u0486';
printf("%c\n", c); // Output: ҆
JavaScript:
const char = '\u0486';
console.log(char); // Output: ҆
Java:
char c = '\u0486';
System.out.println(c); // Output: ҆
JSON:
{"text": "\u0486"} // Value: ҆
Python:
char = '\u0486'
print(char) # Output: ҆
Perl:
my $char = "\x{0486}";
print $char; # Output: ҆
PHP:
$char = "\x{0486}";
echo $char; // Output: ҆
Ruby:
char = "\u{0486}"
puts char # Output: ҆
Rust:
let c = '\u{486}';
println!("{}", c); // Output: ҆
Go:
char := '\u0486'
fmt.Printf("%c\n", char) // Output: ҆
CSS:
/* CSS content property */
.element::before {
content: "\000486"; /* 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%86
MD5:
421bbb0a1e5af26f187020ea614a9e7f
SHA1:
8cf43a835c350a70d29b5e44f62de569e54b2e7c
Base64:
0oY=