C:
char c = '\u0525';
printf("%c\n", c); // Output: ԥ
JavaScript:
const char = '\u0525';
console.log(char); // Output: ԥ
Java:
char c = '\u0525';
System.out.println(c); // Output: ԥ
JSON:
{"text": "\u0525"} // Value: ԥ
Python:
char = '\u0525'
print(char) # Output: ԥ
Perl:
my $char = "\x{0525}";
print $char; # Output: ԥ
PHP:
$char = "\x{0525}";
echo $char; // Output: ԥ
Ruby:
char = "\u{0525}"
puts char # Output: ԥ
Rust:
let c = '\u{525}';
println!("{}", c); // Output: ԥ
Go:
char := '\u0525'
fmt.Printf("%c\n", char) // Output: ԥ
CSS:
/* CSS content property */
.element::before {
content: "\000525"; /* 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%A5
MD5:
6c67d9b9bf3195457614a02830977ae4
SHA1:
19c59ba5fd783b909d8e0566d307cf52ea48a822
Base64:
1KU=