C:
char c = '\u0706';
printf("%c\n", c); // Output: ܆
JavaScript:
const char = '\u0706';
console.log(char); // Output: ܆
Java:
char c = '\u0706';
System.out.println(c); // Output: ܆
JSON:
{"text": "\u0706"} // Value: ܆
Python:
char = '\u0706'
print(char) # Output: ܆
Perl:
my $char = "\x{0706}";
print $char; # Output: ܆
PHP:
$char = "\x{0706}";
echo $char; // Output: ܆
Ruby:
char = "\u{0706}"
puts char # Output: ܆
Rust:
let c = '\u{706}';
println!("{}", c); // Output: ܆
Go:
char := '\u0706'
fmt.Printf("%c\n", char) // Output: ܆
CSS:
/* CSS content property */
.element::before {
content: "\000706"; /* 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%86
MD5:
292e97af76412aa32a1c5864c57e065d
SHA1:
0aa314cbf756f92f7b0b66b5273e92d3b89ca804
Base64:
3IY=