C:
char c = '\u1786';
printf("%c\n", c); // Output: ឆ
JavaScript:
const char = '\u1786';
console.log(char); // Output: ឆ
Java:
char c = '\u1786';
System.out.println(c); // Output: ឆ
JSON:
{"text": "\u1786"} // Value: ឆ
Python:
char = '\u1786'
print(char) # Output: ឆ
Perl:
my $char = "\x{1786}";
print $char; # Output: ឆ
PHP:
$char = "\x{1786}";
echo $char; // Output: ឆ
Ruby:
char = "\u{1786}"
puts char # Output: ឆ
Rust:
let c = '\u{1786}';
println!("{}", c); // Output: ឆ
Go:
char := '\u1786'
fmt.Printf("%c\n", char) // Output: ឆ
CSS:
/* CSS content property */
.element::before {
content: "\001786"; /* 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%9E%86
MD5:
e184031c27e02d8723ba6e2307eb94cf
SHA1:
657ae0745582b6d26665e48a3a4e85fd06088b24
Base64:
4Z6G