C:
char c = '\u1866';
printf("%c\n", c); // Output: ᡦ
JavaScript:
const char = '\u1866';
console.log(char); // Output: ᡦ
Java:
char c = '\u1866';
System.out.println(c); // Output: ᡦ
JSON:
{"text": "\u1866"} // Value: ᡦ
Python:
char = '\u1866'
print(char) # Output: ᡦ
Perl:
my $char = "\x{1866}";
print $char; # Output: ᡦ
PHP:
$char = "\x{1866}";
echo $char; // Output: ᡦ
Ruby:
char = "\u{1866}"
puts char # Output: ᡦ
Rust:
let c = '\u{1866}';
println!("{}", c); // Output: ᡦ
Go:
char := '\u1866'
fmt.Printf("%c\n", char) // Output: ᡦ
CSS:
/* CSS content property */
.element::before {
content: "\001866"; /* 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%A1%A6
MD5:
2eaf48a6a61a2ea62788163c77ab89f2
SHA1:
ad1f6eac452246c186e1c7a8ad5c9b4cedab0ce1
Base64:
4aGm