C:
char c = '\u16CF';
printf("%c\n", c); // Output: ᛏ
JavaScript:
const char = '\u16CF';
console.log(char); // Output: ᛏ
Java:
char c = '\u16CF';
System.out.println(c); // Output: ᛏ
JSON:
{"text": "\u16CF"} // Value: ᛏ
Python:
char = '\u16CF'
print(char) # Output: ᛏ
Perl:
my $char = "\x{16CF}";
print $char; # Output: ᛏ
PHP:
$char = "\x{16CF}";
echo $char; // Output: ᛏ
Ruby:
char = "\u{16CF}"
puts char # Output: ᛏ
Rust:
let c = '\u{16CF}';
println!("{}", c); // Output: ᛏ
Go:
char := '\u16CF'
fmt.Printf("%c\n", char) // Output: ᛏ
CSS:
/* CSS content property */
.element::before {
content: "\0016CF"; /* 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%8F
MD5:
ab30dd3c1cdbdbf76571b6738dce97df
SHA1:
b202c10c2cbd8317b558cba1900e6c8a97844505
Base64:
4ZuP