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