C:
char c = '\u0746';
printf("%c\n", c); // Output: ݆
JavaScript:
const char = '\u0746';
console.log(char); // Output: ݆
Java:
char c = '\u0746';
System.out.println(c); // Output: ݆
JSON:
{"text": "\u0746"} // Value: ݆
Python:
char = '\u0746'
print(char) # Output: ݆
Perl:
my $char = "\x{0746}";
print $char; # Output: ݆
PHP:
$char = "\x{0746}";
echo $char; // Output: ݆
Ruby:
char = "\u{0746}"
puts char # Output: ݆
Rust:
let c = '\u{746}';
println!("{}", c); // Output: ݆
Go:
char := '\u0746'
fmt.Printf("%c\n", char) // Output: ݆
CSS:
/* CSS content property */
.element::before {
content: "\000746"; /* 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=%DD%86
MD5:
1271a178c87b0fb469bb97124d0a4ddb
SHA1:
9c22f62bd3d6b49efa40270d8fe4bb561086a2cf
Base64:
3YY=