C:
char c = '\u0745';
printf("%c\n", c); // Output: ݅
JavaScript:
const char = '\u0745';
console.log(char); // Output: ݅
Java:
char c = '\u0745';
System.out.println(c); // Output: ݅
JSON:
{"text": "\u0745"} // Value: ݅
Python:
char = '\u0745'
print(char) # Output: ݅
Perl:
my $char = "\x{0745}";
print $char; # Output: ݅
PHP:
$char = "\x{0745}";
echo $char; // Output: ݅
Ruby:
char = "\u{0745}"
puts char # Output: ݅
Rust:
let c = '\u{745}';
println!("{}", c); // Output: ݅
Go:
char := '\u0745'
fmt.Printf("%c\n", char) // Output: ݅
CSS:
/* CSS content property */
.element::before {
content: "\000745"; /* 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%85
MD5:
03ec72d00ebd4b027ed652653764daa7
SHA1:
cf13d488ba59bf78d0ff224c2970335fae513a6b
Base64:
3YU=