C:
char c = '\u0516';
printf("%c\n", c); // Output: Ԗ
JavaScript:
const char = '\u0516';
console.log(char); // Output: Ԗ
Java:
char c = '\u0516';
System.out.println(c); // Output: Ԗ
JSON:
{"text": "\u0516"} // Value: Ԗ
Python:
char = '\u0516'
print(char) # Output: Ԗ
Perl:
my $char = "\x{0516}";
print $char; # Output: Ԗ
PHP:
$char = "\x{0516}";
echo $char; // Output: Ԗ
Ruby:
char = "\u{0516}"
puts char # Output: Ԗ
Rust:
let c = '\u{516}';
println!("{}", c); // Output: Ԗ
Go:
char := '\u0516'
fmt.Printf("%c\n", char) // Output: Ԗ
CSS:
/* CSS content property */
.element::before {
content: "\000516"; /* 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%96
MD5:
92986e743c11bbd6b0f4031b254daede
SHA1:
3f3d694c2f93caf25e3c67fd675af5b1aec5bd53
Base64:
1JY=