C:
char c = '\u1726';
printf("%c\n", c); // Output: ᜦ
JavaScript:
const char = '\u1726';
console.log(char); // Output: ᜦ
Java:
char c = '\u1726';
System.out.println(c); // Output: ᜦ
JSON:
{"text": "\u1726"} // Value: ᜦ
Python:
char = '\u1726'
print(char) # Output: ᜦ
Perl:
my $char = "\x{1726}";
print $char; # Output: ᜦ
PHP:
$char = "\x{1726}";
echo $char; // Output: ᜦ
Ruby:
char = "\u{1726}"
puts char # Output: ᜦ
Rust:
let c = '\u{1726}';
println!("{}", c); // Output: ᜦ
Go:
char := '\u1726'
fmt.Printf("%c\n", char) // Output: ᜦ
CSS:
/* CSS content property */
.element::before {
content: "\001726"; /* 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%A6
MD5:
f3ff36e8d175fc935c19eb5615552ccc
SHA1:
0f1611e9ce426c04c103062d7e047d59a864c5cd
Base64:
4Zym