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