C:
char c = '\u7101';
printf("%c\n", c); // Output: 焁
JavaScript:
const char = '\u7101';
console.log(char); // Output: 焁
Java:
char c = '\u7101';
System.out.println(c); // Output: 焁
JSON:
{"text": "\u7101"} // Value: 焁
Python:
char = '\u7101'
print(char) # Output: 焁
Perl:
my $char = "\x{7101}";
print $char; # Output: 焁
PHP:
$char = "\x{7101}";
echo $char; // Output: 焁
Ruby:
char = "\u{7101}"
puts char # Output: 焁
Rust:
let c = '\u{7101}';
println!("{}", c); // Output: 焁
Go:
char := '\u7101'
fmt.Printf("%c\n", char) // Output: 焁
CSS:
/* CSS content property */
.element::before {
content: "\007101"; /* 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=%E7%84%81
MD5:
0bd3aa1d3f8eedf137d374c9714b11c2
SHA1:
cda9c21e51843f3b962d1f3c4ec53ee986461591
Base64:
54SB