C:
char c = '\u0718';
printf("%c\n", c); // Output: ܘ
JavaScript:
const char = '\u0718';
console.log(char); // Output: ܘ
Java:
char c = '\u0718';
System.out.println(c); // Output: ܘ
JSON:
{"text": "\u0718"} // Value: ܘ
Python:
char = '\u0718'
print(char) # Output: ܘ
Perl:
my $char = "\x{0718}";
print $char; # Output: ܘ
PHP:
$char = "\x{0718}";
echo $char; // Output: ܘ
Ruby:
char = "\u{0718}"
puts char # Output: ܘ
Rust:
let c = '\u{718}';
println!("{}", c); // Output: ܘ
Go:
char := '\u0718'
fmt.Printf("%c\n", char) // Output: ܘ
CSS:
/* CSS content property */
.element::before {
content: "\000718"; /* 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%98
MD5:
3771f95b93055c32edb299b88449e6e4
SHA1:
bf9dd4d29f5709e0a917976d99e977768ac7ac31
Base64:
3Jg=