C:
char c = '\u0727';
printf("%c\n", c); // Output: ܧ
JavaScript:
const char = '\u0727';
console.log(char); // Output: ܧ
Java:
char c = '\u0727';
System.out.println(c); // Output: ܧ
JSON:
{"text": "\u0727"} // Value: ܧ
Python:
char = '\u0727'
print(char) # Output: ܧ
Perl:
my $char = "\x{0727}";
print $char; # Output: ܧ
PHP:
$char = "\x{0727}";
echo $char; // Output: ܧ
Ruby:
char = "\u{0727}"
puts char # Output: ܧ
Rust:
let c = '\u{727}';
println!("{}", c); // Output: ܧ
Go:
char := '\u0727'
fmt.Printf("%c\n", char) // Output: ܧ
CSS:
/* CSS content property */
.element::before {
content: "\000727"; /* 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%A7
MD5:
0ccb08c5dee6938edf00eee8c6e45e13
SHA1:
539c0a4897f6bf551140a81edb1758d4d6de8144
Base64:
3Kc=