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