C:
char c = '\u1871';
printf("%c\n", c); // Output: ᡱ
JavaScript:
const char = '\u1871';
console.log(char); // Output: ᡱ
Java:
char c = '\u1871';
System.out.println(c); // Output: ᡱ
JSON:
{"text": "\u1871"} // Value: ᡱ
Python:
char = '\u1871'
print(char) # Output: ᡱ
Perl:
my $char = "\x{1871}";
print $char; # Output: ᡱ
PHP:
$char = "\x{1871}";
echo $char; // Output: ᡱ
Ruby:
char = "\u{1871}"
puts char # Output: ᡱ
Rust:
let c = '\u{1871}';
println!("{}", c); // Output: ᡱ
Go:
char := '\u1871'
fmt.Printf("%c\n", char) // Output: ᡱ
CSS:
/* CSS content property */
.element::before {
content: "\001871"; /* 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%A1%B1
MD5:
5497d26f9505a4eb254de34da839bcd6
SHA1:
2ff8d257c06fb2daee4035047f9cc5e1f9eddaae
Base64:
4aGx