C:
char c = '\u6421';
printf("%c\n", c); // Output: 搡
JavaScript:
const char = '\u6421';
console.log(char); // Output: 搡
Java:
char c = '\u6421';
System.out.println(c); // Output: 搡
JSON:
{"text": "\u6421"} // Value: 搡
Python:
char = '\u6421'
print(char) # Output: 搡
Perl:
my $char = "\x{6421}";
print $char; # Output: 搡
PHP:
$char = "\x{6421}";
echo $char; // Output: 搡
Ruby:
char = "\u{6421}"
puts char # Output: 搡
Rust:
let c = '\u{6421}';
println!("{}", c); // Output: 搡
Go:
char := '\u6421'
fmt.Printf("%c\n", char) // Output: 搡
CSS:
/* CSS content property */
.element::before {
content: "\006421"; /* 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=%E6%90%A1
MD5:
87fc4a661fa894a0eee7740f011a083f
SHA1:
bc84b317912c16e1eacf190cb304333645e79342
Base64:
5pCh