C:
char c = '\u1811';
printf("%c\n", c); // Output: ᠑
JavaScript:
const char = '\u1811';
console.log(char); // Output: ᠑
Java:
char c = '\u1811';
System.out.println(c); // Output: ᠑
JSON:
{"text": "\u1811"} // Value: ᠑
Python:
char = '\u1811'
print(char) # Output: ᠑
Perl:
my $char = "\x{1811}";
print $char; # Output: ᠑
PHP:
$char = "\x{1811}";
echo $char; // Output: ᠑
Ruby:
char = "\u{1811}"
puts char # Output: ᠑
Rust:
let c = '\u{1811}';
println!("{}", c); // Output: ᠑
Go:
char := '\u1811'
fmt.Printf("%c\n", char) // Output: ᠑
CSS:
/* CSS content property */
.element::before {
content: "\001811"; /* 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%91
MD5:
d34ae3e01be672b076e7acd3545fdb58
SHA1:
17516d6c9c7fac8b04f99dd566eee3ccbb14de91
Base64:
4aCR