C:
char c = '\u1768';
printf("%c\n", c); // Output: ᝨ
JavaScript:
const char = '\u1768';
console.log(char); // Output: ᝨ
Java:
char c = '\u1768';
System.out.println(c); // Output: ᝨ
JSON:
{"text": "\u1768"} // Value: ᝨ
Python:
char = '\u1768'
print(char) # Output: ᝨ
Perl:
my $char = "\x{1768}";
print $char; # Output: ᝨ
PHP:
$char = "\x{1768}";
echo $char; // Output: ᝨ
Ruby:
char = "\u{1768}"
puts char # Output: ᝨ
Rust:
let c = '\u{1768}';
println!("{}", c); // Output: ᝨ
Go:
char := '\u1768'
fmt.Printf("%c\n", char) // Output: ᝨ
CSS:
/* CSS content property */
.element::before {
content: "\001768"; /* 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%A8
MD5:
c104e758eb842e358341b993b511eb6f
SHA1:
1d875e7f7b01f0e1d8f3b91da899ca3dde3f245e
Base64:
4Z2o