C:
char c = '\u0712';
printf("%c\n", c); // Output: ܒ
JavaScript:
const char = '\u0712';
console.log(char); // Output: ܒ
Java:
char c = '\u0712';
System.out.println(c); // Output: ܒ
JSON:
{"text": "\u0712"} // Value: ܒ
Python:
char = '\u0712'
print(char) # Output: ܒ
Perl:
my $char = "\x{0712}";
print $char; # Output: ܒ
PHP:
$char = "\x{0712}";
echo $char; // Output: ܒ
Ruby:
char = "\u{0712}"
puts char # Output: ܒ
Rust:
let c = '\u{712}';
println!("{}", c); // Output: ܒ
Go:
char := '\u0712'
fmt.Printf("%c\n", char) // Output: ܒ
CSS:
/* CSS content property */
.element::before {
content: "\000712"; /* 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%92
MD5:
a2146b3919f1e83076b9b7619a0608a9
SHA1:
a491d40c5eceacdb8cbcbb58a3b932396acbef8f
Base64:
3JI=