C:
char c = '\u7248';
printf("%c\n", c); // Output: 版
JavaScript:
const char = '\u7248';
console.log(char); // Output: 版
Java:
char c = '\u7248';
System.out.println(c); // Output: 版
JSON:
{"text": "\u7248"} // Value: 版
Python:
char = '\u7248'
print(char) # Output: 版
Perl:
my $char = "\x{7248}";
print $char; # Output: 版
PHP:
$char = "\x{7248}";
echo $char; // Output: 版
Ruby:
char = "\u{7248}"
puts char # Output: 版
Rust:
let c = '\u{7248}';
println!("{}", c); // Output: 版
Go:
char := '\u7248'
fmt.Printf("%c\n", char) // Output: 版
CSS:
/* CSS content property */
.element::before {
content: "\007248"; /* 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%89%88
MD5:
47595ba3562ede817b40287d907c3d40
SHA1:
3da4ed2a6f90bd6e670c32a2900ad3dcb116ced2
Base64:
54mI