C:
char c = '\u1985';
printf("%c\n", c); // Output: ᦅ
JavaScript:
const char = '\u1985';
console.log(char); // Output: ᦅ
Java:
char c = '\u1985';
System.out.println(c); // Output: ᦅ
JSON:
{"text": "\u1985"} // Value: ᦅ
Python:
char = '\u1985'
print(char) # Output: ᦅ
Perl:
my $char = "\x{1985}";
print $char; # Output: ᦅ
PHP:
$char = "\x{1985}";
echo $char; // Output: ᦅ
Ruby:
char = "\u{1985}"
puts char # Output: ᦅ
Rust:
let c = '\u{1985}';
println!("{}", c); // Output: ᦅ
Go:
char := '\u1985'
fmt.Printf("%c\n", char) // Output: ᦅ
CSS:
/* CSS content property */
.element::before {
content: "\001985"; /* 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%A6%85
MD5:
38528d7274787a997fe14858f013f14e
SHA1:
4ba1eb1be74e1b99c8657b47ddd20069d440330f
Base64:
4aaF