C:
char c = '\u1906';
printf("%c\n", c); // Output: ᤆ
JavaScript:
const char = '\u1906';
console.log(char); // Output: ᤆ
Java:
char c = '\u1906';
System.out.println(c); // Output: ᤆ
JSON:
{"text": "\u1906"} // Value: ᤆ
Python:
char = '\u1906'
print(char) # Output: ᤆ
Perl:
my $char = "\x{1906}";
print $char; # Output: ᤆ
PHP:
$char = "\x{1906}";
echo $char; // Output: ᤆ
Ruby:
char = "\u{1906}"
puts char # Output: ᤆ
Rust:
let c = '\u{1906}';
println!("{}", c); // Output: ᤆ
Go:
char := '\u1906'
fmt.Printf("%c\n", char) // Output: ᤆ
CSS:
/* CSS content property */
.element::before {
content: "\001906"; /* 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%A4%86
MD5:
e0bf248262ffc4ce683153f81f8390dd
SHA1:
2cfd51ade5c09d0d23b6f2a9c5e560785347b47c
Base64:
4aSG