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