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