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