C:
char c = '\u1869';
printf("%c\n", c); // Output: ᡩ
JavaScript:
const char = '\u1869';
console.log(char); // Output: ᡩ
Java:
char c = '\u1869';
System.out.println(c); // Output: ᡩ
JSON:
{"text": "\u1869"} // Value: ᡩ
Python:
char = '\u1869'
print(char) # Output: ᡩ
Perl:
my $char = "\x{1869}";
print $char; # Output: ᡩ
PHP:
$char = "\x{1869}";
echo $char; // Output: ᡩ
Ruby:
char = "\u{1869}"
puts char # Output: ᡩ
Rust:
let c = '\u{1869}';
println!("{}", c); // Output: ᡩ
Go:
char := '\u1869'
fmt.Printf("%c\n", char) // Output: ᡩ
CSS:
/* CSS content property */
.element::before {
content: "\001869"; /* 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%A9
MD5:
812062c583d924ed003f179e7c6d4437
SHA1:
2b51a93d909886bdfd6550b77f0a5609f2686389
Base64:
4aGp