C:
char c = '\u0736';
printf("%c\n", c); // Output: ܶ
JavaScript:
const char = '\u0736';
console.log(char); // Output: ܶ
Java:
char c = '\u0736';
System.out.println(c); // Output: ܶ
JSON:
{"text": "\u0736"} // Value: ܶ
Python:
char = '\u0736'
print(char) # Output: ܶ
Perl:
my $char = "\x{0736}";
print $char; # Output: ܶ
PHP:
$char = "\x{0736}";
echo $char; // Output: ܶ
Ruby:
char = "\u{0736}"
puts char # Output: ܶ
Rust:
let c = '\u{736}';
println!("{}", c); // Output: ܶ
Go:
char := '\u0736'
fmt.Printf("%c\n", char) // Output: ܶ
CSS:
/* CSS content property */
.element::before {
content: "\000736"; /* 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%B6
MD5:
c439f2e9f50da3492d0cf36e97d9c846
SHA1:
f543297955f6b262fe115ed637bad09d065cf5ce
Base64:
3LY=