C:
char c = '\u1925';
printf("%c\n", c); // Output: ᤥ
JavaScript:
const char = '\u1925';
console.log(char); // Output: ᤥ
Java:
char c = '\u1925';
System.out.println(c); // Output: ᤥ
JSON:
{"text": "\u1925"} // Value: ᤥ
Python:
char = '\u1925'
print(char) # Output: ᤥ
Perl:
my $char = "\x{1925}";
print $char; # Output: ᤥ
PHP:
$char = "\x{1925}";
echo $char; // Output: ᤥ
Ruby:
char = "\u{1925}"
puts char # Output: ᤥ
Rust:
let c = '\u{1925}';
println!("{}", c); // Output: ᤥ
Go:
char := '\u1925'
fmt.Printf("%c\n", char) // Output: ᤥ
CSS:
/* CSS content property */
.element::before {
content: "\001925"; /* 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%A5
MD5:
514be6e8f678cc791a42f35b8cfa5712
SHA1:
2774881359b597550634b21ee1356d07bf3a28b8
Base64:
4aSl