C:
char c = '\u1770';
printf("%c\n", c); // Output: ᝰ
JavaScript:
const char = '\u1770';
console.log(char); // Output: ᝰ
Java:
char c = '\u1770';
System.out.println(c); // Output: ᝰ
JSON:
{"text": "\u1770"} // Value: ᝰ
Python:
char = '\u1770'
print(char) # Output: ᝰ
Perl:
my $char = "\x{1770}";
print $char; # Output: ᝰ
PHP:
$char = "\x{1770}";
echo $char; // Output: ᝰ
Ruby:
char = "\u{1770}"
puts char # Output: ᝰ
Rust:
let c = '\u{1770}';
println!("{}", c); // Output: ᝰ
Go:
char := '\u1770'
fmt.Printf("%c\n", char) // Output: ᝰ
CSS:
/* CSS content property */
.element::before {
content: "\001770"; /* 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%B0
MD5:
779a50ede157c3162c4fb6916acd553e
SHA1:
57381f5eed004e6280a3b0e64cddb259b7db969a
Base64:
4Z2w