C:
char c = '\u1858';
printf("%c\n", c); // Output: ᡘ
JavaScript:
const char = '\u1858';
console.log(char); // Output: ᡘ
Java:
char c = '\u1858';
System.out.println(c); // Output: ᡘ
JSON:
{"text": "\u1858"} // Value: ᡘ
Python:
char = '\u1858'
print(char) # Output: ᡘ
Perl:
my $char = "\x{1858}";
print $char; # Output: ᡘ
PHP:
$char = "\x{1858}";
echo $char; // Output: ᡘ
Ruby:
char = "\u{1858}"
puts char # Output: ᡘ
Rust:
let c = '\u{1858}';
println!("{}", c); // Output: ᡘ
Go:
char := '\u1858'
fmt.Printf("%c\n", char) // Output: ᡘ
CSS:
/* CSS content property */
.element::before {
content: "\001858"; /* 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%98
MD5:
51aa4cdc36dd42cdf8d2dcb158cc51c9
SHA1:
7a849d47d060f93267844158151f9a99469b02f7
Base64:
4aGY