C:
char c = '\u0510';
printf("%c\n", c); // Output: Ԑ
JavaScript:
const char = '\u0510';
console.log(char); // Output: Ԑ
Java:
char c = '\u0510';
System.out.println(c); // Output: Ԑ
JSON:
{"text": "\u0510"} // Value: Ԑ
Python:
char = '\u0510'
print(char) # Output: Ԑ
Perl:
my $char = "\x{0510}";
print $char; # Output: Ԑ
PHP:
$char = "\x{0510}";
echo $char; // Output: Ԑ
Ruby:
char = "\u{0510}"
puts char # Output: Ԑ
Rust:
let c = '\u{510}';
println!("{}", c); // Output: Ԑ
Go:
char := '\u0510'
fmt.Printf("%c\n", char) // Output: Ԑ
CSS:
/* CSS content property */
.element::before {
content: "\000510"; /* 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=%D4%90
MD5:
13d8fb7415411a6ea64a76b17bcdb630
SHA1:
5bec4a77a9bd3c776a4a2e6b0d6f31d5f1aadf22
Base64:
1JA=