C:
char c = '\u2D0D';
printf("%c\n", c); // Output: ⴍ
JavaScript:
const char = '\u2D0D';
console.log(char); // Output: ⴍ
Java:
char c = '\u2D0D';
System.out.println(c); // Output: ⴍ
JSON:
{"text": "\u2D0D"} // Value: ⴍ
Python:
char = '\u2D0D'
print(char) # Output: ⴍ
Perl:
my $char = "\x{2D0D}";
print $char; # Output: ⴍ
PHP:
$char = "\x{2D0D}";
echo $char; // Output: ⴍ
Ruby:
char = "\u{2D0D}"
puts char # Output: ⴍ
Rust:
let c = '\u{2D0D}';
println!("{}", c); // Output: ⴍ
Go:
char := '\u2D0D'
fmt.Printf("%c\n", char) // Output: ⴍ
CSS:
/* CSS content property */
.element::before {
content: "\002D0D"; /* 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=%E2%B4%8D
MD5:
69b1339d53e8e98e692c32aff2ef4175
SHA1:
ab01087c42fbcb22b2803304b15b2edcec0d5c45
Base64:
4rSN