C:
char c = '\u1931';
printf("%c\n", c); // Output: ᤱ
JavaScript:
const char = '\u1931';
console.log(char); // Output: ᤱ
Java:
char c = '\u1931';
System.out.println(c); // Output: ᤱ
JSON:
{"text": "\u1931"} // Value: ᤱ
Python:
char = '\u1931'
print(char) # Output: ᤱ
Perl:
my $char = "\x{1931}";
print $char; # Output: ᤱ
PHP:
$char = "\x{1931}";
echo $char; // Output: ᤱ
Ruby:
char = "\u{1931}"
puts char # Output: ᤱ
Rust:
let c = '\u{1931}';
println!("{}", c); // Output: ᤱ
Go:
char := '\u1931'
fmt.Printf("%c\n", char) // Output: ᤱ
CSS:
/* CSS content property */
.element::before {
content: "\001931"; /* 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%B1
MD5:
e8c2c7e3b334d32ee94717f9827333f3
SHA1:
23d788733d86b41ce2197bd4ed70d1b5c94f53aa
Base64:
4aSx