C:
char c = '\u83AB';
printf("%c\n", c); // Output: 莫
JavaScript:
const char = '\u83AB';
console.log(char); // Output: 莫
Java:
char c = '\u83AB';
System.out.println(c); // Output: 莫
JSON:
{"text": "\u83AB"} // Value: 莫
Python:
char = '\u83AB'
print(char) # Output: 莫
Perl:
my $char = "\x{83AB}";
print $char; # Output: 莫
PHP:
$char = "\x{83AB}";
echo $char; // Output: 莫
Ruby:
char = "\u{83AB}"
puts char # Output: 莫
Rust:
let c = '\u{83AB}';
println!("{}", c); // Output: 莫
Go:
char := '\u83AB'
fmt.Printf("%c\n", char) // Output: 莫
CSS:
/* CSS content property */
.element::before {
content: "\0083AB"; /* 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=%E8%8E%AB
MD5:
8c56a7aecc136989389f51f2e66cb76a
SHA1:
509fdf088dfd023d197901b6b890ac9827221505
Base64:
6I6r