C:
char c = '\u1BE4';
printf("%c\n", c); // Output: ᯤ
JavaScript:
const char = '\u1BE4';
console.log(char); // Output: ᯤ
Java:
char c = '\u1BE4';
System.out.println(c); // Output: ᯤ
JSON:
{"text": "\u1BE4"} // Value: ᯤ
Python:
char = '\u1BE4'
print(char) # Output: ᯤ
Perl:
my $char = "\x{1BE4}";
print $char; # Output: ᯤ
PHP:
$char = "\x{1BE4}";
echo $char; // Output: ᯤ
Ruby:
char = "\u{1BE4}"
puts char # Output: ᯤ
Rust:
let c = '\u{1BE4}';
println!("{}", c); // Output: ᯤ
Go:
char := '\u1BE4'
fmt.Printf("%c\n", char) // Output: ᯤ
CSS:
/* CSS content property */
.element::before {
content: "\001BE4"; /* 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%AF%A4
MD5:
73afd3c258f55a2ecedeff51cb2420a1
SHA1:
91d361da422adbd2d9e7706f8b4114e5ec5cce19
Base64:
4a+k