C:
char c = '\u0517';
printf("%c\n", c); // Output: ԗ
JavaScript:
const char = '\u0517';
console.log(char); // Output: ԗ
Java:
char c = '\u0517';
System.out.println(c); // Output: ԗ
JSON:
{"text": "\u0517"} // Value: ԗ
Python:
char = '\u0517'
print(char) # Output: ԗ
Perl:
my $char = "\x{0517}";
print $char; # Output: ԗ
PHP:
$char = "\x{0517}";
echo $char; // Output: ԗ
Ruby:
char = "\u{0517}"
puts char # Output: ԗ
Rust:
let c = '\u{517}';
println!("{}", c); // Output: ԗ
Go:
char := '\u0517'
fmt.Printf("%c\n", char) // Output: ԗ
CSS:
/* CSS content property */
.element::before {
content: "\000517"; /* 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%97
MD5:
3eef9f89497f821a5be90d4d961a1398
SHA1:
3502bbf068c11ff0f3f52c9d3ad9a918dd273cb2
Base64:
1Jc=