C:
char c = '\u0728';
printf("%c\n", c); // Output: ܨ
JavaScript:
const char = '\u0728';
console.log(char); // Output: ܨ
Java:
char c = '\u0728';
System.out.println(c); // Output: ܨ
JSON:
{"text": "\u0728"} // Value: ܨ
Python:
char = '\u0728'
print(char) # Output: ܨ
Perl:
my $char = "\x{0728}";
print $char; # Output: ܨ
PHP:
$char = "\x{0728}";
echo $char; // Output: ܨ
Ruby:
char = "\u{0728}"
puts char # Output: ܨ
Rust:
let c = '\u{728}';
println!("{}", c); // Output: ܨ
Go:
char := '\u0728'
fmt.Printf("%c\n", char) // Output: ܨ
CSS:
/* CSS content property */
.element::before {
content: "\000728"; /* 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=%DC%A8
MD5:
2fe3f1956b547a0bf9aa933ba0f91908
SHA1:
af2ad67cc2f5948e6bebac0f8844771fe0348b16
Base64:
3Kg=