C:
char c = '\u1863';
printf("%c\n", c); // Output: ᡣ
JavaScript:
const char = '\u1863';
console.log(char); // Output: ᡣ
Java:
char c = '\u1863';
System.out.println(c); // Output: ᡣ
JSON:
{"text": "\u1863"} // Value: ᡣ
Python:
char = '\u1863'
print(char) # Output: ᡣ
Perl:
my $char = "\x{1863}";
print $char; # Output: ᡣ
PHP:
$char = "\x{1863}";
echo $char; // Output: ᡣ
Ruby:
char = "\u{1863}"
puts char # Output: ᡣ
Rust:
let c = '\u{1863}';
println!("{}", c); // Output: ᡣ
Go:
char := '\u1863'
fmt.Printf("%c\n", char) // Output: ᡣ
CSS:
/* CSS content property */
.element::before {
content: "\001863"; /* 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%A3
MD5:
9f3eba079c27481079f952a6d17efa8d
SHA1:
04220483138818b62bcd6ef12ee3e817593878b5
Base64:
4aGj