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