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