C:
char c = '\u1826';
printf("%c\n", c); // Output: ᠦ
JavaScript:
const char = '\u1826';
console.log(char); // Output: ᠦ
Java:
char c = '\u1826';
System.out.println(c); // Output: ᠦ
JSON:
{"text": "\u1826"} // Value: ᠦ
Python:
char = '\u1826'
print(char) # Output: ᠦ
Perl:
my $char = "\x{1826}";
print $char; # Output: ᠦ
PHP:
$char = "\x{1826}";
echo $char; // Output: ᠦ
Ruby:
char = "\u{1826}"
puts char # Output: ᠦ
Rust:
let c = '\u{1826}';
println!("{}", c); // Output: ᠦ
Go:
char := '\u1826'
fmt.Printf("%c\n", char) // Output: ᠦ
CSS:
/* CSS content property */
.element::before {
content: "\001826"; /* 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%A6
MD5:
c7ccbee72a2e20133b63e17118d47f15
SHA1:
f0516a5b7ea6a8c02bb9d4a0009aa68633922eab
Base64:
4aCm