C:
char c = '\u4E89';
printf("%c\n", c); // Output: 争
JavaScript:
const char = '\u4E89';
console.log(char); // Output: 争
Java:
char c = '\u4E89';
System.out.println(c); // Output: 争
JSON:
{"text": "\u4E89"} // Value: 争
Python:
char = '\u4E89'
print(char) # Output: 争
Perl:
my $char = "\x{4E89}";
print $char; # Output: 争
PHP:
$char = "\x{4E89}";
echo $char; // Output: 争
Ruby:
char = "\u{4E89}"
puts char # Output: 争
Rust:
let c = '\u{4E89}';
println!("{}", c); // Output: 争
Go:
char := '\u4E89'
fmt.Printf("%c\n", char) // Output: 争
CSS:
/* CSS content property */
.element::before {
content: "\004E89"; /* 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%BA%89
MD5:
6a4fae8e3750e555836def06d3b70df1
SHA1:
3e88d694b8bbce5f71c0c38706f39fb39f895e90
Base64:
5LqJ