C:
char c = '\u1BEE';
printf("%c\n", c); // Output: ᯮ
JavaScript:
const char = '\u1BEE';
console.log(char); // Output: ᯮ
Java:
char c = '\u1BEE';
System.out.println(c); // Output: ᯮ
JSON:
{"text": "\u1BEE"} // Value: ᯮ
Python:
char = '\u1BEE'
print(char) # Output: ᯮ
Perl:
my $char = "\x{1BEE}";
print $char; # Output: ᯮ
PHP:
$char = "\x{1BEE}";
echo $char; // Output: ᯮ
Ruby:
char = "\u{1BEE}"
puts char # Output: ᯮ
Rust:
let c = '\u{1BEE}';
println!("{}", c); // Output: ᯮ
Go:
char := '\u1BEE'
fmt.Printf("%c\n", char) // Output: ᯮ
CSS:
/* CSS content property */
.element::before {
content: "\001BEE"; /* 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%AE
MD5:
5889876535e08035c6be2e4ac40feedd
SHA1:
52659c7b23560cc8493b29fee304468a3be4c4ab
Base64:
4a+u