C:
char c = '\u0749';
printf("%c\n", c); // Output: ݉
JavaScript:
const char = '\u0749';
console.log(char); // Output: ݉
Java:
char c = '\u0749';
System.out.println(c); // Output: ݉
JSON:
{"text": "\u0749"} // Value: ݉
Python:
char = '\u0749'
print(char) # Output: ݉
Perl:
my $char = "\x{0749}";
print $char; # Output: ݉
PHP:
$char = "\x{0749}";
echo $char; // Output: ݉
Ruby:
char = "\u{0749}"
puts char # Output: ݉
Rust:
let c = '\u{749}';
println!("{}", c); // Output: ݉
Go:
char := '\u0749'
fmt.Printf("%c\n", char) // Output: ݉
CSS:
/* CSS content property */
.element::before {
content: "\000749"; /* 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%89
MD5:
caeb24a4255f7b325ab1a9c94ca2afed
SHA1:
0c01737fe5efffafc5561e19e1b82e296b98f2ec
Base64:
3Yk=