C:
char c = '\u0702';
printf("%c\n", c); // Output: ܂
JavaScript:
const char = '\u0702';
console.log(char); // Output: ܂
Java:
char c = '\u0702';
System.out.println(c); // Output: ܂
JSON:
{"text": "\u0702"} // Value: ܂
Python:
char = '\u0702'
print(char) # Output: ܂
Perl:
my $char = "\x{0702}";
print $char; # Output: ܂
PHP:
$char = "\x{0702}";
echo $char; // Output: ܂
Ruby:
char = "\u{0702}"
puts char # Output: ܂
Rust:
let c = '\u{702}';
println!("{}", c); // Output: ܂
Go:
char := '\u0702'
fmt.Printf("%c\n", char) // Output: ܂
CSS:
/* CSS content property */
.element::before {
content: "\000702"; /* 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%82
MD5:
389e827ef6582472b7cfd808c2e0128c
SHA1:
83a527dd7092403899458260c6af539b61f06bf4
Base64:
3II=