C:
char c = '\u1995';
printf("%c\n", c); // Output: ᦕ
JavaScript:
const char = '\u1995';
console.log(char); // Output: ᦕ
Java:
char c = '\u1995';
System.out.println(c); // Output: ᦕ
JSON:
{"text": "\u1995"} // Value: ᦕ
Python:
char = '\u1995'
print(char) # Output: ᦕ
Perl:
my $char = "\x{1995}";
print $char; # Output: ᦕ
PHP:
$char = "\x{1995}";
echo $char; // Output: ᦕ
Ruby:
char = "\u{1995}"
puts char # Output: ᦕ
Rust:
let c = '\u{1995}';
println!("{}", c); // Output: ᦕ
Go:
char := '\u1995'
fmt.Printf("%c\n", char) // Output: ᦕ
CSS:
/* CSS content property */
.element::before {
content: "\001995"; /* 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%95
MD5:
739fc9eeb9ed204cd0a6529045e30c5b
SHA1:
7ac6fc7496d71ec73ebc46c4a009c7dfe942d2a8
Base64:
4aaV