C:
char c = '\u7214';
printf("%c\n", c); // Output: 爔
JavaScript:
const char = '\u7214';
console.log(char); // Output: 爔
Java:
char c = '\u7214';
System.out.println(c); // Output: 爔
JSON:
{"text": "\u7214"} // Value: 爔
Python:
char = '\u7214'
print(char) # Output: 爔
Perl:
my $char = "\x{7214}";
print $char; # Output: 爔
PHP:
$char = "\x{7214}";
echo $char; // Output: 爔
Ruby:
char = "\u{7214}"
puts char # Output: 爔
Rust:
let c = '\u{7214}';
println!("{}", c); // Output: 爔
Go:
char := '\u7214'
fmt.Printf("%c\n", char) // Output: 爔
CSS:
/* CSS content property */
.element::before {
content: "\007214"; /* 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%94
MD5:
dc479639360c516d0204d1b635c92b10
SHA1:
dcaba8f6614ca0749aa530268ceca288ae5fc633
Base64:
54iU