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