C:
char c = '\u0506';
printf("%c\n", c); // Output: Ԇ
JavaScript:
const char = '\u0506';
console.log(char); // Output: Ԇ
Java:
char c = '\u0506';
System.out.println(c); // Output: Ԇ
JSON:
{"text": "\u0506"} // Value: Ԇ
Python:
char = '\u0506'
print(char) # Output: Ԇ
Perl:
my $char = "\x{0506}";
print $char; # Output: Ԇ
PHP:
$char = "\x{0506}";
echo $char; // Output: Ԇ
Ruby:
char = "\u{0506}"
puts char # Output: Ԇ
Rust:
let c = '\u{506}';
println!("{}", c); // Output: Ԇ
Go:
char := '\u0506'
fmt.Printf("%c\n", char) // Output: Ԇ
CSS:
/* CSS content property */
.element::before {
content: "\000506"; /* 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%86
MD5:
3082a52e49fbe0744d3fe45b6a5b7f6a
SHA1:
000df8b78e5750e64f4ed80922786041330756fb
Base64:
1IY=