C:
char c = '\u0524';
printf("%c\n", c); // Output: Ԥ
JavaScript:
const char = '\u0524';
console.log(char); // Output: Ԥ
Java:
char c = '\u0524';
System.out.println(c); // Output: Ԥ
JSON:
{"text": "\u0524"} // Value: Ԥ
Python:
char = '\u0524'
print(char) # Output: Ԥ
Perl:
my $char = "\x{0524}";
print $char; # Output: Ԥ
PHP:
$char = "\x{0524}";
echo $char; // Output: Ԥ
Ruby:
char = "\u{0524}"
puts char # Output: Ԥ
Rust:
let c = '\u{524}';
println!("{}", c); // Output: Ԥ
Go:
char := '\u0524'
fmt.Printf("%c\n", char) // Output: Ԥ
CSS:
/* CSS content property */
.element::before {
content: "\000524"; /* 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%A4
MD5:
def296f9d59074e6a607436eaa029ef5
SHA1:
0b0619c74e573477c99c573967fe93dcc855280b
Base64:
1KQ=