C:
char c = '\u1760';
printf("%c\n", c); // Output: ᝠ
JavaScript:
const char = '\u1760';
console.log(char); // Output: ᝠ
Java:
char c = '\u1760';
System.out.println(c); // Output: ᝠ
JSON:
{"text": "\u1760"} // Value: ᝠ
Python:
char = '\u1760'
print(char) # Output: ᝠ
Perl:
my $char = "\x{1760}";
print $char; # Output: ᝠ
PHP:
$char = "\x{1760}";
echo $char; // Output: ᝠ
Ruby:
char = "\u{1760}"
puts char # Output: ᝠ
Rust:
let c = '\u{1760}';
println!("{}", c); // Output: ᝠ
Go:
char := '\u1760'
fmt.Printf("%c\n", char) // Output: ᝠ
CSS:
/* CSS content property */
.element::before {
content: "\001760"; /* 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%A0
MD5:
f2defbeef7424e74dd062e7fe6080765
SHA1:
1343317f5831315959268bd74d7afcadc45a6490
Base64:
4Z2g