C:
char c = '\u0754';
printf("%c\n", c); // Output: ݔ
JavaScript:
const char = '\u0754';
console.log(char); // Output: ݔ
Java:
char c = '\u0754';
System.out.println(c); // Output: ݔ
JSON:
{"text": "\u0754"} // Value: ݔ
Python:
char = '\u0754'
print(char) # Output: ݔ
Perl:
my $char = "\x{0754}";
print $char; # Output: ݔ
PHP:
$char = "\x{0754}";
echo $char; // Output: ݔ
Ruby:
char = "\u{0754}"
puts char # Output: ݔ
Rust:
let c = '\u{754}';
println!("{}", c); // Output: ݔ
Go:
char := '\u0754'
fmt.Printf("%c\n", char) // Output: ݔ
CSS:
/* CSS content property */
.element::before {
content: "\000754"; /* 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%94
MD5:
5e2ef7ac2ebe0948e4db05cc615abb49
SHA1:
48335f4fb91ed2cbe5af46faa4cb6bf70bcf4b0e
Base64:
3ZQ=