C:
char c = '\u1923';
printf("%c\n", c); // Output: ᤣ
JavaScript:
const char = '\u1923';
console.log(char); // Output: ᤣ
Java:
char c = '\u1923';
System.out.println(c); // Output: ᤣ
JSON:
{"text": "\u1923"} // Value: ᤣ
Python:
char = '\u1923'
print(char) # Output: ᤣ
Perl:
my $char = "\x{1923}";
print $char; # Output: ᤣ
PHP:
$char = "\x{1923}";
echo $char; // Output: ᤣ
Ruby:
char = "\u{1923}"
puts char # Output: ᤣ
Rust:
let c = '\u{1923}';
println!("{}", c); // Output: ᤣ
Go:
char := '\u1923'
fmt.Printf("%c\n", char) // Output: ᤣ
CSS:
/* CSS content property */
.element::before {
content: "\001923"; /* 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%A4%A3
MD5:
331c21af932ffd12378414f0b533108e
SHA1:
81ef5eb632e9bbeceaf35e349fd99adb0deea672
Base64:
4aSj