C:
char c = '\u0527';
printf("%c\n", c); // Output: ԧ
JavaScript:
const char = '\u0527';
console.log(char); // Output: ԧ
Java:
char c = '\u0527';
System.out.println(c); // Output: ԧ
JSON:
{"text": "\u0527"} // Value: ԧ
Python:
char = '\u0527'
print(char) # Output: ԧ
Perl:
my $char = "\x{0527}";
print $char; # Output: ԧ
PHP:
$char = "\x{0527}";
echo $char; // Output: ԧ
Ruby:
char = "\u{0527}"
puts char # Output: ԧ
Rust:
let c = '\u{527}';
println!("{}", c); // Output: ԧ
Go:
char := '\u0527'
fmt.Printf("%c\n", char) // Output: ԧ
CSS:
/* CSS content property */
.element::before {
content: "\000527"; /* 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%A7
MD5:
0108b0218c299032360988153b216c3d
SHA1:
60399935d3c19abdcfc56d23e09985f2793dae4d
Base64:
1Kc=