C:
char c = '\u4F83';
printf("%c\n", c); // Output: 侃
JavaScript:
const char = '\u4F83';
console.log(char); // Output: 侃
Java:
char c = '\u4F83';
System.out.println(c); // Output: 侃
JSON:
{"text": "\u4F83"} // Value: 侃
Python:
char = '\u4F83'
print(char) # Output: 侃
Perl:
my $char = "\x{4F83}";
print $char; # Output: 侃
PHP:
$char = "\x{4F83}";
echo $char; // Output: 侃
Ruby:
char = "\u{4F83}"
puts char # Output: 侃
Rust:
let c = '\u{4F83}';
println!("{}", c); // Output: 侃
Go:
char := '\u4F83'
fmt.Printf("%c\n", char) // Output: 侃
CSS:
/* CSS content property */
.element::before {
content: "\004F83"; /* 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=%E4%BE%83
MD5:
88cfe607154b2b0242aeb1ee85e3b2e3
SHA1:
3d44df734bea7d484180642f1937cdae825f046d
Base64:
5L6D