C:
char c = '\u1507';
printf("%c\n", c); // Output: ᔇ
JavaScript:
const char = '\u1507';
console.log(char); // Output: ᔇ
Java:
char c = '\u1507';
System.out.println(c); // Output: ᔇ
JSON:
{"text": "\u1507"} // Value: ᔇ
Python:
char = '\u1507'
print(char) # Output: ᔇ
Perl:
my $char = "\x{1507}";
print $char; # Output: ᔇ
PHP:
$char = "\x{1507}";
echo $char; // Output: ᔇ
Ruby:
char = "\u{1507}"
puts char # Output: ᔇ
Rust:
let c = '\u{1507}';
println!("{}", c); // Output: ᔇ
Go:
char := '\u1507'
fmt.Printf("%c\n", char) // Output: ᔇ
CSS:
/* CSS content property */
.element::before {
content: "\001507"; /* 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=%E1%94%87
MD5:
37fe2717ed9417103f2fa2c55fdb7399
SHA1:
4e756c504dd1d3eb9d35f158e69f44f7b2a2c675
Base64:
4ZSH