C:
char c = '\u4FAB';
printf("%c\n", c); // Output: 侫
JavaScript:
const char = '\u4FAB';
console.log(char); // Output: 侫
Java:
char c = '\u4FAB';
System.out.println(c); // Output: 侫
JSON:
{"text": "\u4FAB"} // Value: 侫
Python:
char = '\u4FAB'
print(char) # Output: 侫
Perl:
my $char = "\x{4FAB}";
print $char; # Output: 侫
PHP:
$char = "\x{4FAB}";
echo $char; // Output: 侫
Ruby:
char = "\u{4FAB}"
puts char # Output: 侫
Rust:
let c = '\u{4FAB}';
println!("{}", c); // Output: 侫
Go:
char := '\u4FAB'
fmt.Printf("%c\n", char) // Output: 侫
CSS:
/* CSS content property */
.element::before {
content: "\004FAB"; /* 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%AB
MD5:
0797d3a93b5fbca5eb3aea4efa6c755d
SHA1:
a1f390d455756552e03da96d734d3b245fbd4950
Base64:
5L6r