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