C:
char c = '\u1767';
printf("%c\n", c); // Output: ᝧ
JavaScript:
const char = '\u1767';
console.log(char); // Output: ᝧ
Java:
char c = '\u1767';
System.out.println(c); // Output: ᝧ
JSON:
{"text": "\u1767"} // Value: ᝧ
Python:
char = '\u1767'
print(char) # Output: ᝧ
Perl:
my $char = "\x{1767}";
print $char; # Output: ᝧ
PHP:
$char = "\x{1767}";
echo $char; // Output: ᝧ
Ruby:
char = "\u{1767}"
puts char # Output: ᝧ
Rust:
let c = '\u{1767}';
println!("{}", c); // Output: ᝧ
Go:
char := '\u1767'
fmt.Printf("%c\n", char) // Output: ᝧ
CSS:
/* CSS content property */
.element::before {
content: "\001767"; /* 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%9D%A7
MD5:
e367a9c18b9469c27dc5d09a893e5e5b
SHA1:
2cd6069a9cb5fa26ffa1250f287f41135361607c
Base64:
4Z2n