C:
char c = '\u7201';
printf("%c\n", c); // Output: 爁
JavaScript:
const char = '\u7201';
console.log(char); // Output: 爁
Java:
char c = '\u7201';
System.out.println(c); // Output: 爁
JSON:
{"text": "\u7201"} // Value: 爁
Python:
char = '\u7201'
print(char) # Output: 爁
Perl:
my $char = "\x{7201}";
print $char; # Output: 爁
PHP:
$char = "\x{7201}";
echo $char; // Output: 爁
Ruby:
char = "\u{7201}"
puts char # Output: 爁
Rust:
let c = '\u{7201}';
println!("{}", c); // Output: 爁
Go:
char := '\u7201'
fmt.Printf("%c\n", char) // Output: 爁
CSS:
/* CSS content property */
.element::before {
content: "\007201"; /* 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%88%81
MD5:
f5111e95c3a38900b9844da52a608d89
SHA1:
9b0aed4ba242d887850e285903d51aae3d2a028c
Base64:
54iB