C:
char c = '\u0526';
printf("%c\n", c); // Output: Ԧ
JavaScript:
const char = '\u0526';
console.log(char); // Output: Ԧ
Java:
char c = '\u0526';
System.out.println(c); // Output: Ԧ
JSON:
{"text": "\u0526"} // Value: Ԧ
Python:
char = '\u0526'
print(char) # Output: Ԧ
Perl:
my $char = "\x{0526}";
print $char; # Output: Ԧ
PHP:
$char = "\x{0526}";
echo $char; // Output: Ԧ
Ruby:
char = "\u{0526}"
puts char # Output: Ԧ
Rust:
let c = '\u{526}';
println!("{}", c); // Output: Ԧ
Go:
char := '\u0526'
fmt.Printf("%c\n", char) // Output: Ԧ
CSS:
/* CSS content property */
.element::before {
content: "\000526"; /* 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%A6
MD5:
54c97d3609b5ca76fccbd408ccc73399
SHA1:
97b61052c999b4ea1fde922089bb6d6ed871574e
Base64:
1KY=