C:
char c = '\u1817';
printf("%c\n", c); // Output: ᠗
JavaScript:
const char = '\u1817';
console.log(char); // Output: ᠗
Java:
char c = '\u1817';
System.out.println(c); // Output: ᠗
JSON:
{"text": "\u1817"} // Value: ᠗
Python:
char = '\u1817'
print(char) # Output: ᠗
Perl:
my $char = "\x{1817}";
print $char; # Output: ᠗
PHP:
$char = "\x{1817}";
echo $char; // Output: ᠗
Ruby:
char = "\u{1817}"
puts char # Output: ᠗
Rust:
let c = '\u{1817}';
println!("{}", c); // Output: ᠗
Go:
char := '\u1817'
fmt.Printf("%c\n", char) // Output: ᠗
CSS:
/* CSS content property */
.element::before {
content: "\001817"; /* 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%97
MD5:
a3882f3a44e1a25c26426eb8cc2e855b
SHA1:
8316e627474b863ba765712f609619f588cb1bc1
Base64:
4aCX