C:
char c = '\u18C6';
printf("%c\n", c); // Output: ᣆ
JavaScript:
const char = '\u18C6';
console.log(char); // Output: ᣆ
Java:
char c = '\u18C6';
System.out.println(c); // Output: ᣆ
JSON:
{"text": "\u18C6"} // Value: ᣆ
Python:
char = '\u18C6'
print(char) # Output: ᣆ
Perl:
my $char = "\x{18C6}";
print $char; # Output: ᣆ
PHP:
$char = "\x{18C6}";
echo $char; // Output: ᣆ
Ruby:
char = "\u{18C6}"
puts char # Output: ᣆ
Rust:
let c = '\u{18C6}';
println!("{}", c); // Output: ᣆ
Go:
char := '\u18C6'
fmt.Printf("%c\n", char) // Output: ᣆ
CSS:
/* CSS content property */
.element::before {
content: "\0018C6"; /* 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%A3%86
MD5:
d0406a8074d3b8fdf5230feba1ee46c9
SHA1:
d56800cce47d69706f7333f525c4c77bea065d86
Base64:
4aOG