C:
char c = '\u1920';
printf("%c\n", c); // Output: ᤠ
JavaScript:
const char = '\u1920';
console.log(char); // Output: ᤠ
Java:
char c = '\u1920';
System.out.println(c); // Output: ᤠ
JSON:
{"text": "\u1920"} // Value: ᤠ
Python:
char = '\u1920'
print(char) # Output: ᤠ
Perl:
my $char = "\x{1920}";
print $char; # Output: ᤠ
PHP:
$char = "\x{1920}";
echo $char; // Output: ᤠ
Ruby:
char = "\u{1920}"
puts char # Output: ᤠ
Rust:
let c = '\u{1920}';
println!("{}", c); // Output: ᤠ
Go:
char := '\u1920'
fmt.Printf("%c\n", char) // Output: ᤠ
CSS:
/* CSS content property */
.element::before {
content: "\001920"; /* 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%A0
MD5:
4fc54439fcd28737e4bd02e0519ba130
SHA1:
c1d267d37a1c7eb0ae43d1da198b21f745192bed
Base64:
4aSg