C:
char c = '\u1806';
printf("%c\n", c); // Output: ᠆
JavaScript:
const char = '\u1806';
console.log(char); // Output: ᠆
Java:
char c = '\u1806';
System.out.println(c); // Output: ᠆
JSON:
{"text": "\u1806"} // Value: ᠆
Python:
char = '\u1806'
print(char) # Output: ᠆
Perl:
my $char = "\x{1806}";
print $char; # Output: ᠆
PHP:
$char = "\x{1806}";
echo $char; // Output: ᠆
Ruby:
char = "\u{1806}"
puts char # Output: ᠆
Rust:
let c = '\u{1806}';
println!("{}", c); // Output: ᠆
Go:
char := '\u1806'
fmt.Printf("%c\n", char) // Output: ᠆
CSS:
/* CSS content property */
.element::before {
content: "\001806"; /* 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%86
MD5:
692439d4fae4914c94481bff902c9243
SHA1:
c779891feb7afc27b368eac3e464b431531eaae6
Base64:
4aCG