C:
char c = '\u0522';
printf("%c\n", c); // Output: Ԣ
JavaScript:
const char = '\u0522';
console.log(char); // Output: Ԣ
Java:
char c = '\u0522';
System.out.println(c); // Output: Ԣ
JSON:
{"text": "\u0522"} // Value: Ԣ
Python:
char = '\u0522'
print(char) # Output: Ԣ
Perl:
my $char = "\x{0522}";
print $char; # Output: Ԣ
PHP:
$char = "\x{0522}";
echo $char; // Output: Ԣ
Ruby:
char = "\u{0522}"
puts char # Output: Ԣ
Rust:
let c = '\u{522}';
println!("{}", c); // Output: Ԣ
Go:
char := '\u0522'
fmt.Printf("%c\n", char) // Output: Ԣ
CSS:
/* CSS content property */
.element::before {
content: "\000522"; /* 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%A2
MD5:
a08f5d8b0cfdb1a51c430b99aa73bb52
SHA1:
88a327946d090c9a71b650bc32b2bc090abd6b73
Base64:
1KI=