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