C:
char c = '\u6D83';
printf("%c\n", c); // Output: 涃
JavaScript:
const char = '\u6D83';
console.log(char); // Output: 涃
Java:
char c = '\u6D83';
System.out.println(c); // Output: 涃
JSON:
{"text": "\u6D83"} // Value: 涃
Python:
char = '\u6D83'
print(char) # Output: 涃
Perl:
my $char = "\x{6D83}";
print $char; # Output: 涃
PHP:
$char = "\x{6D83}";
echo $char; // Output: 涃
Ruby:
char = "\u{6D83}"
puts char # Output: 涃
Rust:
let c = '\u{6D83}';
println!("{}", c); // Output: 涃
Go:
char := '\u6D83'
fmt.Printf("%c\n", char) // Output: 涃
CSS:
/* CSS content property */
.element::before {
content: "\006D83"; /* 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=%E6%B6%83
MD5:
521f766b1cd3e547e351a1a4e0ea894e
SHA1:
d70d92575359a242b650ca901e5a4c170e8cb959
Base64:
5raD