C:
char c = '\u6033';
printf("%c\n", c); // Output: 怳
JavaScript:
const char = '\u6033';
console.log(char); // Output: 怳
Java:
char c = '\u6033';
System.out.println(c); // Output: 怳
JSON:
{"text": "\u6033"} // Value: 怳
Python:
char = '\u6033'
print(char) # Output: 怳
Perl:
my $char = "\x{6033}";
print $char; # Output: 怳
PHP:
$char = "\x{6033}";
echo $char; // Output: 怳
Ruby:
char = "\u{6033}"
puts char # Output: 怳
Rust:
let c = '\u{6033}';
println!("{}", c); // Output: 怳
Go:
char := '\u6033'
fmt.Printf("%c\n", char) // Output: 怳
CSS:
/* CSS content property */
.element::before {
content: "\006033"; /* 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%80%B3
MD5:
684760390ec1a2d15438dc04ebc690a3
SHA1:
055f60e05d218654017205b61d250427ab234b1a
Base64:
5oCz