C:
char c = '\u6412';
printf("%c\n", c); // Output: 搒
JavaScript:
const char = '\u6412';
console.log(char); // Output: 搒
Java:
char c = '\u6412';
System.out.println(c); // Output: 搒
JSON:
{"text": "\u6412"} // Value: 搒
Python:
char = '\u6412'
print(char) # Output: 搒
Perl:
my $char = "\x{6412}";
print $char; # Output: 搒
PHP:
$char = "\x{6412}";
echo $char; // Output: 搒
Ruby:
char = "\u{6412}"
puts char # Output: 搒
Rust:
let c = '\u{6412}';
println!("{}", c); // Output: 搒
Go:
char := '\u6412'
fmt.Printf("%c\n", char) // Output: 搒
CSS:
/* CSS content property */
.element::before {
content: "\006412"; /* 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%92
MD5:
b1ae3f15330907798ac32b2b10cdcc90
SHA1:
946af6bcb9cea770adb58c13628fd70bbbf37b42
Base64:
5pCS