C:
char c = '\u0705';
printf("%c\n", c); // Output: ܅
JavaScript:
const char = '\u0705';
console.log(char); // Output: ܅
Java:
char c = '\u0705';
System.out.println(c); // Output: ܅
JSON:
{"text": "\u0705"} // Value: ܅
Python:
char = '\u0705'
print(char) # Output: ܅
Perl:
my $char = "\x{0705}";
print $char; # Output: ܅
PHP:
$char = "\x{0705}";
echo $char; // Output: ܅
Ruby:
char = "\u{0705}"
puts char # Output: ܅
Rust:
let c = '\u{705}';
println!("{}", c); // Output: ܅
Go:
char := '\u0705'
fmt.Printf("%c\n", char) // Output: ܅
CSS:
/* CSS content property */
.element::before {
content: "\000705"; /* 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%85
MD5:
383bfbbf7c8a23d5ce0bf08b304b2ffa
SHA1:
60fb1175e7731c02d81bbb536d8f6fb50baa91a0
Base64:
3IU=