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