C:
char c = '\u1724';
printf("%c\n", c); // Output: ᜤ
JavaScript:
const char = '\u1724';
console.log(char); // Output: ᜤ
Java:
char c = '\u1724';
System.out.println(c); // Output: ᜤ
JSON:
{"text": "\u1724"} // Value: ᜤ
Python:
char = '\u1724'
print(char) # Output: ᜤ
Perl:
my $char = "\x{1724}";
print $char; # Output: ᜤ
PHP:
$char = "\x{1724}";
echo $char; // Output: ᜤ
Ruby:
char = "\u{1724}"
puts char # Output: ᜤ
Rust:
let c = '\u{1724}';
println!("{}", c); // Output: ᜤ
Go:
char := '\u1724'
fmt.Printf("%c\n", char) // Output: ᜤ
CSS:
/* CSS content property */
.element::before {
content: "\001724"; /* 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%A4
MD5:
26a1f589cc926a578228aef69f4ceb77
SHA1:
062f29a76282f09f0bc814900ace0d6396b1881c
Base64:
4Zyk