C:
char c = '\u6518';
printf("%c\n", c); // Output: 攘
JavaScript:
const char = '\u6518';
console.log(char); // Output: 攘
Java:
char c = '\u6518';
System.out.println(c); // Output: 攘
JSON:
{"text": "\u6518"} // Value: 攘
Python:
char = '\u6518'
print(char) # Output: 攘
Perl:
my $char = "\x{6518}";
print $char; # Output: 攘
PHP:
$char = "\x{6518}";
echo $char; // Output: 攘
Ruby:
char = "\u{6518}"
puts char # Output: 攘
Rust:
let c = '\u{6518}';
println!("{}", c); // Output: 攘
Go:
char := '\u6518'
fmt.Printf("%c\n", char) // Output: 攘
CSS:
/* CSS content property */
.element::before {
content: "\006518"; /* 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%94%98
MD5:
297f215a37577ce69066a513c7f45ef7
SHA1:
d98668179e8e23631e738da02a39331b96fb243c
Base64:
5pSY