C:
char c = '\u0742';
printf("%c\n", c); // Output: ݂
JavaScript:
const char = '\u0742';
console.log(char); // Output: ݂
Java:
char c = '\u0742';
System.out.println(c); // Output: ݂
JSON:
{"text": "\u0742"} // Value: ݂
Python:
char = '\u0742'
print(char) # Output: ݂
Perl:
my $char = "\x{0742}";
print $char; # Output: ݂
PHP:
$char = "\x{0742}";
echo $char; // Output: ݂
Ruby:
char = "\u{0742}"
puts char # Output: ݂
Rust:
let c = '\u{742}';
println!("{}", c); // Output: ݂
Go:
char := '\u0742'
fmt.Printf("%c\n", char) // Output: ݂
CSS:
/* CSS content property */
.element::before {
content: "\000742"; /* 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=%DD%82
MD5:
f34a7a37a87a3bcb5cdad1b1eb734e48
SHA1:
a213113341bdedc5ec4c48b27ff0d99d34975042
Base64:
3YI=