C:
char c = '\u1907';
printf("%c\n", c); // Output: ᤇ
JavaScript:
const char = '\u1907';
console.log(char); // Output: ᤇ
Java:
char c = '\u1907';
System.out.println(c); // Output: ᤇ
JSON:
{"text": "\u1907"} // Value: ᤇ
Python:
char = '\u1907'
print(char) # Output: ᤇ
Perl:
my $char = "\x{1907}";
print $char; # Output: ᤇ
PHP:
$char = "\x{1907}";
echo $char; // Output: ᤇ
Ruby:
char = "\u{1907}"
puts char # Output: ᤇ
Rust:
let c = '\u{1907}';
println!("{}", c); // Output: ᤇ
Go:
char := '\u1907'
fmt.Printf("%c\n", char) // Output: ᤇ
CSS:
/* CSS content property */
.element::before {
content: "\001907"; /* 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%87
MD5:
d1bde53ad86e468cb569023bb8a1f93c
SHA1:
5a0dd7fb6ec36ce29a57f4aacf973f639e05c981
Base64:
4aSH