C:
char c = '\u052A';
printf("%c\n", c); // Output: Ԫ
JavaScript:
const char = '\u052A';
console.log(char); // Output: Ԫ
Java:
char c = '\u052A';
System.out.println(c); // Output: Ԫ
JSON:
{"text": "\u052A"} // Value: Ԫ
Python:
char = '\u052A'
print(char) # Output: Ԫ
Perl:
my $char = "\x{052A}";
print $char; # Output: Ԫ
PHP:
$char = "\x{052A}";
echo $char; // Output: Ԫ
Ruby:
char = "\u{052A}"
puts char # Output: Ԫ
Rust:
let c = '\u{52A}';
println!("{}", c); // Output: Ԫ
Go:
char := '\u052A'
fmt.Printf("%c\n", char) // Output: Ԫ
CSS:
/* CSS content property */
.element::before {
content: "\00052A"; /* 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%AA
MD5:
31dfe6e291cd357f41c690f77c1d02ae
SHA1:
1eed15ffb5cde8a61a0ad58fd1569a0dfa941cd3
Base64:
1Ko=