C:
char c = '\u1867';
printf("%c\n", c); // Output: ᡧ
JavaScript:
const char = '\u1867';
console.log(char); // Output: ᡧ
Java:
char c = '\u1867';
System.out.println(c); // Output: ᡧ
JSON:
{"text": "\u1867"} // Value: ᡧ
Python:
char = '\u1867'
print(char) # Output: ᡧ
Perl:
my $char = "\x{1867}";
print $char; # Output: ᡧ
PHP:
$char = "\x{1867}";
echo $char; // Output: ᡧ
Ruby:
char = "\u{1867}"
puts char # Output: ᡧ
Rust:
let c = '\u{1867}';
println!("{}", c); // Output: ᡧ
Go:
char := '\u1867'
fmt.Printf("%c\n", char) // Output: ᡧ
CSS:
/* CSS content property */
.element::before {
content: "\001867"; /* 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%A7
MD5:
ebecf248c7cf464d88e98e6c5cb151f8
SHA1:
cee15e0efd3bc38840936c0a79c354086f8246ec
Base64:
4aGn