C:
char c = '\u6083';
printf("%c\n", c); // Output: 悃
JavaScript:
const char = '\u6083';
console.log(char); // Output: 悃
Java:
char c = '\u6083';
System.out.println(c); // Output: 悃
JSON:
{"text": "\u6083"} // Value: 悃
Python:
char = '\u6083'
print(char) # Output: 悃
Perl:
my $char = "\x{6083}";
print $char; # Output: 悃
PHP:
$char = "\x{6083}";
echo $char; // Output: 悃
Ruby:
char = "\u{6083}"
puts char # Output: 悃
Rust:
let c = '\u{6083}';
println!("{}", c); // Output: 悃
Go:
char := '\u6083'
fmt.Printf("%c\n", char) // Output: 悃
CSS:
/* CSS content property */
.element::before {
content: "\006083"; /* 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%82%83
MD5:
91f937dfc5c85965bbdc4b3f640bc5a8
SHA1:
dac56549f3d8a87aac8c9b10dda42c79866426c8
Base64:
5oKD