C:
char c = '\u1902';
printf("%c\n", c); // Output: ᤂ
JavaScript:
const char = '\u1902';
console.log(char); // Output: ᤂ
Java:
char c = '\u1902';
System.out.println(c); // Output: ᤂ
JSON:
{"text": "\u1902"} // Value: ᤂ
Python:
char = '\u1902'
print(char) # Output: ᤂ
Perl:
my $char = "\x{1902}";
print $char; # Output: ᤂ
PHP:
$char = "\x{1902}";
echo $char; // Output: ᤂ
Ruby:
char = "\u{1902}"
puts char # Output: ᤂ
Rust:
let c = '\u{1902}';
println!("{}", c); // Output: ᤂ
Go:
char := '\u1902'
fmt.Printf("%c\n", char) // Output: ᤂ
CSS:
/* CSS content property */
.element::before {
content: "\001902"; /* 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%82
MD5:
c7e0c61d1fcbec309fd213c0f5a26739
SHA1:
344a80a9eaabd6f8c8cafeb3c113581f562e56ba
Base64:
4aSC