C:
char c = '\u4E5C';
printf("%c\n", c); // Output: 乜
JavaScript:
const char = '\u4E5C';
console.log(char); // Output: 乜
Java:
char c = '\u4E5C';
System.out.println(c); // Output: 乜
JSON:
{"text": "\u4E5C"} // Value: 乜
Python:
char = '\u4E5C'
print(char) # Output: 乜
Perl:
my $char = "\x{4E5C}";
print $char; # Output: 乜
PHP:
$char = "\x{4E5C}";
echo $char; // Output: 乜
Ruby:
char = "\u{4E5C}"
puts char # Output: 乜
Rust:
let c = '\u{4E5C}';
println!("{}", c); // Output: 乜
Go:
char := '\u4E5C'
fmt.Printf("%c\n", char) // Output: 乜
CSS:
/* CSS content property */
.element::before {
content: "\004E5C"; /* 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%B9%9C
MD5:
1dca9ac013731730fd4c626a4391b34a
SHA1:
58cd9554340670700a97b72e1478ed630ac42b0a
Base64:
5Lmc