C:
char c = '\u0520';
printf("%c\n", c); // Output: Ԡ
JavaScript:
const char = '\u0520';
console.log(char); // Output: Ԡ
Java:
char c = '\u0520';
System.out.println(c); // Output: Ԡ
JSON:
{"text": "\u0520"} // Value: Ԡ
Python:
char = '\u0520'
print(char) # Output: Ԡ
Perl:
my $char = "\x{0520}";
print $char; # Output: Ԡ
PHP:
$char = "\x{0520}";
echo $char; // Output: Ԡ
Ruby:
char = "\u{0520}"
puts char # Output: Ԡ
Rust:
let c = '\u{520}';
println!("{}", c); // Output: Ԡ
Go:
char := '\u0520'
fmt.Printf("%c\n", char) // Output: Ԡ
CSS:
/* CSS content property */
.element::before {
content: "\000520"; /* 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%A0
MD5:
c0b9dabc4d4daad7f47a45f49d8f493a
SHA1:
774a032b03eacab18db5feef53ba75af3a423087
Base64:
1KA=