C:
char c = '\u0739';
printf("%c\n", c); // Output: ܹ
JavaScript:
const char = '\u0739';
console.log(char); // Output: ܹ
Java:
char c = '\u0739';
System.out.println(c); // Output: ܹ
JSON:
{"text": "\u0739"} // Value: ܹ
Python:
char = '\u0739'
print(char) # Output: ܹ
Perl:
my $char = "\x{0739}";
print $char; # Output: ܹ
PHP:
$char = "\x{0739}";
echo $char; // Output: ܹ
Ruby:
char = "\u{0739}"
puts char # Output: ܹ
Rust:
let c = '\u{739}';
println!("{}", c); // Output: ܹ
Go:
char := '\u0739'
fmt.Printf("%c\n", char) // Output: ܹ
CSS:
/* CSS content property */
.element::before {
content: "\000739"; /* 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%B9
MD5:
3b2f96e5e1da89420621e0f1137e5d54
SHA1:
7bf7cb93bab1d0c5b356fa629515e549bd9a2a7f
Base64:
3Lk=