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