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