C:
char c = '\u1868';
printf("%c\n", c); // Output: ᡨ
JavaScript:
const char = '\u1868';
console.log(char); // Output: ᡨ
Java:
char c = '\u1868';
System.out.println(c); // Output: ᡨ
JSON:
{"text": "\u1868"} // Value: ᡨ
Python:
char = '\u1868'
print(char) # Output: ᡨ
Perl:
my $char = "\x{1868}";
print $char; # Output: ᡨ
PHP:
$char = "\x{1868}";
echo $char; // Output: ᡨ
Ruby:
char = "\u{1868}"
puts char # Output: ᡨ
Rust:
let c = '\u{1868}';
println!("{}", c); // Output: ᡨ
Go:
char := '\u1868'
fmt.Printf("%c\n", char) // Output: ᡨ
CSS:
/* CSS content property */
.element::before {
content: "\001868"; /* 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%A8
MD5:
7839f5095f0283651658ee29d35cf6eb
SHA1:
f39375e616ee35f027d75a5935e24a095b909eb1
Base64:
4aGo