C:
char c = '\u6D4E';
printf("%c\n", c); // Output: 济
JavaScript:
const char = '\u6D4E';
console.log(char); // Output: 济
Java:
char c = '\u6D4E';
System.out.println(c); // Output: 济
JSON:
{"text": "\u6D4E"} // Value: 济
Python:
char = '\u6D4E'
print(char) # Output: 济
Perl:
my $char = "\x{6D4E}";
print $char; # Output: 济
PHP:
$char = "\x{6D4E}";
echo $char; // Output: 济
Ruby:
char = "\u{6D4E}"
puts char # Output: 济
Rust:
let c = '\u{6D4E}';
println!("{}", c); // Output: 济
Go:
char := '\u6D4E'
fmt.Printf("%c\n", char) // Output: 济
CSS:
/* CSS content property */
.element::before {
content: "\006D4E"; /* 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%B5%8E
MD5:
8d9add060467ffa40e850fac41a3f5eb
SHA1:
af5db03a3ca479ab55fc8cbb3e2ff838df5b3394
Base64:
5rWO