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