C:
char c = '\u66C3';
printf("%c\n", c); // Output: 曃
JavaScript:
const char = '\u66C3';
console.log(char); // Output: 曃
Java:
char c = '\u66C3';
System.out.println(c); // Output: 曃
JSON:
{"text": "\u66C3"} // Value: 曃
Python:
char = '\u66C3'
print(char) # Output: 曃
Perl:
my $char = "\x{66C3}";
print $char; # Output: 曃
PHP:
$char = "\x{66C3}";
echo $char; // Output: 曃
Ruby:
char = "\u{66C3}"
puts char # Output: 曃
Rust:
let c = '\u{66C3}';
println!("{}", c); // Output: 曃
Go:
char := '\u66C3'
fmt.Printf("%c\n", char) // Output: 曃
CSS:
/* CSS content property */
.element::before {
content: "\0066C3"; /* 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%83
MD5:
896c3f1dd92e46b78743642cd7b0941c
SHA1:
5b19ba8378278aec7744a9898347ceca1e9b7998
Base64:
5puD