C:
char c = '\u0502';
printf("%c\n", c); // Output: Ԃ
JavaScript:
const char = '\u0502';
console.log(char); // Output: Ԃ
Java:
char c = '\u0502';
System.out.println(c); // Output: Ԃ
JSON:
{"text": "\u0502"} // Value: Ԃ
Python:
char = '\u0502'
print(char) # Output: Ԃ
Perl:
my $char = "\x{0502}";
print $char; # Output: Ԃ
PHP:
$char = "\x{0502}";
echo $char; // Output: Ԃ
Ruby:
char = "\u{0502}"
puts char # Output: Ԃ
Rust:
let c = '\u{502}';
println!("{}", c); // Output: Ԃ
Go:
char := '\u0502'
fmt.Printf("%c\n", char) // Output: Ԃ
CSS:
/* CSS content property */
.element::before {
content: "\000502"; /* 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%82
MD5:
5c08638d9c9539f0b377b5171753843a
SHA1:
2cf17003eb6d5284cc645354fe566ed433db31c0
Base64:
1II=