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