C:
char c = '\u66C2';
printf("%c\n", c); // Output: 曂
JavaScript:
const char = '\u66C2';
console.log(char); // Output: 曂
Java:
char c = '\u66C2';
System.out.println(c); // Output: 曂
JSON:
{"text": "\u66C2"} // Value: 曂
Python:
char = '\u66C2'
print(char) # Output: 曂
Perl:
my $char = "\x{66C2}";
print $char; # Output: 曂
PHP:
$char = "\x{66C2}";
echo $char; // Output: 曂
Ruby:
char = "\u{66C2}"
puts char # Output: 曂
Rust:
let c = '\u{66C2}';
println!("{}", c); // Output: 曂
Go:
char := '\u66C2'
fmt.Printf("%c\n", char) // Output: 曂
CSS:
/* CSS content property */
.element::before {
content: "\0066C2"; /* 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%9B%82
MD5:
ad453d191d4ebe160b49b2a76de6c999
SHA1:
28dfd77fc00ab5b240d74415ea85995ec1ed67cd
Base64:
5puC