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