C:
char c = '\u1195';
printf("%c\n", c); // Output: ᆕ
JavaScript:
const char = '\u1195';
console.log(char); // Output: ᆕ
Java:
char c = '\u1195';
System.out.println(c); // Output: ᆕ
JSON:
{"text": "\u1195"} // Value: ᆕ
Python:
char = '\u1195'
print(char) # Output: ᆕ
Perl:
my $char = "\x{1195}";
print $char; # Output: ᆕ
PHP:
$char = "\x{1195}";
echo $char; // Output: ᆕ
Ruby:
char = "\u{1195}"
puts char # Output: ᆕ
Rust:
let c = '\u{1195}';
println!("{}", c); // Output: ᆕ
Go:
char := '\u1195'
fmt.Printf("%c\n", char) // Output: ᆕ
CSS:
/* CSS content property */
.element::before {
content: "\001195"; /* 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%86%95
MD5:
6f33c5dcaad2a9968537967b2a23e2f7
SHA1:
0bceb63a695790e0fd2ed3fb60f1243668400a87
Base64:
4YaV