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