C:
char c = '\u0714';
printf("%c\n", c); // Output: ܔ
JavaScript:
const char = '\u0714';
console.log(char); // Output: ܔ
Java:
char c = '\u0714';
System.out.println(c); // Output: ܔ
JSON:
{"text": "\u0714"} // Value: ܔ
Python:
char = '\u0714'
print(char) # Output: ܔ
Perl:
my $char = "\x{0714}";
print $char; # Output: ܔ
PHP:
$char = "\x{0714}";
echo $char; // Output: ܔ
Ruby:
char = "\u{0714}"
puts char # Output: ܔ
Rust:
let c = '\u{714}';
println!("{}", c); // Output: ܔ
Go:
char := '\u0714'
fmt.Printf("%c\n", char) // Output: ܔ
CSS:
/* CSS content property */
.element::before {
content: "\000714"; /* 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%94
MD5:
179824f10d02cdd9516c9a73d0f2d264
SHA1:
d32ea7bedef17de09eb8e9954a50aa5fdf47b068
Base64:
3JQ=