C:
char c = '\u1827';
printf("%c\n", c); // Output: ᠧ
JavaScript:
const char = '\u1827';
console.log(char); // Output: ᠧ
Java:
char c = '\u1827';
System.out.println(c); // Output: ᠧ
JSON:
{"text": "\u1827"} // Value: ᠧ
Python:
char = '\u1827'
print(char) # Output: ᠧ
Perl:
my $char = "\x{1827}";
print $char; # Output: ᠧ
PHP:
$char = "\x{1827}";
echo $char; // Output: ᠧ
Ruby:
char = "\u{1827}"
puts char # Output: ᠧ
Rust:
let c = '\u{1827}';
println!("{}", c); // Output: ᠧ
Go:
char := '\u1827'
fmt.Printf("%c\n", char) // Output: ᠧ
CSS:
/* CSS content property */
.element::before {
content: "\001827"; /* 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%A7
MD5:
2a44e760dd5e5aead123d895f40a4468
SHA1:
967446f593def8be3427ba67ab8b126333736969
Base64:
4aCn