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