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