C:
char c = '\u1627';
printf("%c\n", c); // Output: ᘧ
JavaScript:
const char = '\u1627';
console.log(char); // Output: ᘧ
Java:
char c = '\u1627';
System.out.println(c); // Output: ᘧ
JSON:
{"text": "\u1627"} // Value: ᘧ
Python:
char = '\u1627'
print(char) # Output: ᘧ
Perl:
my $char = "\x{1627}";
print $char; # Output: ᘧ
PHP:
$char = "\x{1627}";
echo $char; // Output: ᘧ
Ruby:
char = "\u{1627}"
puts char # Output: ᘧ
Rust:
let c = '\u{1627}';
println!("{}", c); // Output: ᘧ
Go:
char := '\u1627'
fmt.Printf("%c\n", char) // Output: ᘧ
CSS:
/* CSS content property */
.element::before {
content: "\001627"; /* 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%98%A7
MD5:
4d804d8403e314663664f33df4e362b6
SHA1:
8de9dc6cb0b481f3b4b5b3f3ce704463b0ebebad
Base64:
4Zin