C:
char c = '\u0738';
printf("%c\n", c); // Output: ܸ
JavaScript:
const char = '\u0738';
console.log(char); // Output: ܸ
Java:
char c = '\u0738';
System.out.println(c); // Output: ܸ
JSON:
{"text": "\u0738"} // Value: ܸ
Python:
char = '\u0738'
print(char) # Output: ܸ
Perl:
my $char = "\x{0738}";
print $char; # Output: ܸ
PHP:
$char = "\x{0738}";
echo $char; // Output: ܸ
Ruby:
char = "\u{0738}"
puts char # Output: ܸ
Rust:
let c = '\u{738}';
println!("{}", c); // Output: ܸ
Go:
char := '\u0738'
fmt.Printf("%c\n", char) // Output: ܸ
CSS:
/* CSS content property */
.element::before {
content: "\000738"; /* 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%B8
MD5:
197af199955c756856742b4bc55ccf27
SHA1:
6dbbd4386d98401453b8d69faa8e03ea7c5af70f
Base64:
3Lg=