C:
char c = '\u1949';
printf("%c\n", c); // Output: ᥉
JavaScript:
const char = '\u1949';
console.log(char); // Output: ᥉
Java:
char c = '\u1949';
System.out.println(c); // Output: ᥉
JSON:
{"text": "\u1949"} // Value: ᥉
Python:
char = '\u1949'
print(char) # Output: ᥉
Perl:
my $char = "\x{1949}";
print $char; # Output: ᥉
PHP:
$char = "\x{1949}";
echo $char; // Output: ᥉
Ruby:
char = "\u{1949}"
puts char # Output: ᥉
Rust:
let c = '\u{1949}';
println!("{}", c); // Output: ᥉
Go:
char := '\u1949'
fmt.Printf("%c\n", char) // Output: ᥉
CSS:
/* CSS content property */
.element::before {
content: "\001949"; /* 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%A5%89
MD5:
069e9862a573d3983cac69c439bc4961
SHA1:
7d496eb95f6290ea4b85efee729a9c892b078861
Base64:
4aWJ