C:
char c = '\u16CD';
printf("%c\n", c); // Output: ᛍ
JavaScript:
const char = '\u16CD';
console.log(char); // Output: ᛍ
Java:
char c = '\u16CD';
System.out.println(c); // Output: ᛍ
JSON:
{"text": "\u16CD"} // Value: ᛍ
Python:
char = '\u16CD'
print(char) # Output: ᛍ
Perl:
my $char = "\x{16CD}";
print $char; # Output: ᛍ
PHP:
$char = "\x{16CD}";
echo $char; // Output: ᛍ
Ruby:
char = "\u{16CD}"
puts char # Output: ᛍ
Rust:
let c = '\u{16CD}';
println!("{}", c); // Output: ᛍ
Go:
char := '\u16CD'
fmt.Printf("%c\n", char) // Output: ᛍ
CSS:
/* CSS content property */
.element::before {
content: "\0016CD"; /* 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%9B%8D
MD5:
43b2e61a8d3665bfd47b2b2916996dbd
SHA1:
5c80b9bc34e780f754e8c4050ab6e90f742d8d6e
Base64:
4ZuN