C:
char c = '\u1870';
printf("%c\n", c); // Output: ᡰ
JavaScript:
const char = '\u1870';
console.log(char); // Output: ᡰ
Java:
char c = '\u1870';
System.out.println(c); // Output: ᡰ
JSON:
{"text": "\u1870"} // Value: ᡰ
Python:
char = '\u1870'
print(char) # Output: ᡰ
Perl:
my $char = "\x{1870}";
print $char; # Output: ᡰ
PHP:
$char = "\x{1870}";
echo $char; // Output: ᡰ
Ruby:
char = "\u{1870}"
puts char # Output: ᡰ
Rust:
let c = '\u{1870}';
println!("{}", c); // Output: ᡰ
Go:
char := '\u1870'
fmt.Printf("%c\n", char) // Output: ᡰ
CSS:
/* CSS content property */
.element::before {
content: "\001870"; /* 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%B0
MD5:
6df94860e8b32d58c344fa1c68dd8b6f
SHA1:
cf9b6c80285349dd3558d9eb486326e99a97f049
Base64:
4aGw