C:
char c = '\u1723';
printf("%c\n", c); // Output: ᜣ
JavaScript:
const char = '\u1723';
console.log(char); // Output: ᜣ
Java:
char c = '\u1723';
System.out.println(c); // Output: ᜣ
JSON:
{"text": "\u1723"} // Value: ᜣ
Python:
char = '\u1723'
print(char) # Output: ᜣ
Perl:
my $char = "\x{1723}";
print $char; # Output: ᜣ
PHP:
$char = "\x{1723}";
echo $char; // Output: ᜣ
Ruby:
char = "\u{1723}"
puts char # Output: ᜣ
Rust:
let c = '\u{1723}';
println!("{}", c); // Output: ᜣ
Go:
char := '\u1723'
fmt.Printf("%c\n", char) // Output: ᜣ
CSS:
/* CSS content property */
.element::before {
content: "\001723"; /* 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%9C%A3
MD5:
c29044e49f6217b3d6b21b11ab33514a
SHA1:
e1709f9b07233fbed62d2d6cab23fefbd7186ab9
Base64:
4Zyj