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