C:
char c = '\u0528';
printf("%c\n", c); // Output: Ԩ
JavaScript:
const char = '\u0528';
console.log(char); // Output: Ԩ
Java:
char c = '\u0528';
System.out.println(c); // Output: Ԩ
JSON:
{"text": "\u0528"} // Value: Ԩ
Python:
char = '\u0528'
print(char) # Output: Ԩ
Perl:
my $char = "\x{0528}";
print $char; # Output: Ԩ
PHP:
$char = "\x{0528}";
echo $char; // Output: Ԩ
Ruby:
char = "\u{0528}"
puts char # Output: Ԩ
Rust:
let c = '\u{528}';
println!("{}", c); // Output: Ԩ
Go:
char := '\u0528'
fmt.Printf("%c\n", char) // Output: Ԩ
CSS:
/* CSS content property */
.element::before {
content: "\000528"; /* 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%A8
MD5:
ea01a45f5f48d5fe418ed723dc76c54d
SHA1:
fb2f30179b106b0d8e2551a5ac4461c33a9355d3
Base64:
1Kg=