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