C:
char c = '\u7227';
printf("%c\n", c); // Output: 爧
JavaScript:
const char = '\u7227';
console.log(char); // Output: 爧
Java:
char c = '\u7227';
System.out.println(c); // Output: 爧
JSON:
{"text": "\u7227"} // Value: 爧
Python:
char = '\u7227'
print(char) # Output: 爧
Perl:
my $char = "\x{7227}";
print $char; # Output: 爧
PHP:
$char = "\x{7227}";
echo $char; // Output: 爧
Ruby:
char = "\u{7227}"
puts char # Output: 爧
Rust:
let c = '\u{7227}';
println!("{}", c); // Output: 爧
Go:
char := '\u7227'
fmt.Printf("%c\n", char) // Output: 爧
CSS:
/* CSS content property */
.element::before {
content: "\007227"; /* 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%A7
MD5:
bf2c420467f4341078145f1d2a6b7336
SHA1:
31699739016fdf9b0fc3ddaeb1e392f4450e4838
Base64:
54in