C:
char c = '\u5357';
printf("%c\n", c); // Output: 南
JavaScript:
const char = '\u5357';
console.log(char); // Output: 南
Java:
char c = '\u5357';
System.out.println(c); // Output: 南
JSON:
{"text": "\u5357"} // Value: 南
Python:
char = '\u5357'
print(char) # Output: 南
Perl:
my $char = "\x{5357}";
print $char; # Output: 南
PHP:
$char = "\x{5357}";
echo $char; // Output: 南
Ruby:
char = "\u{5357}"
puts char # Output: 南
Rust:
let c = '\u{5357}';
println!("{}", c); // Output: 南
Go:
char := '\u5357'
fmt.Printf("%c\n", char) // Output: 南
CSS:
/* CSS content property */
.element::before {
content: "\005357"; /* 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=%E5%8D%97
MD5:
48029ea20853308ea6bcd411d4ec2ef3
SHA1:
e6ac67fb746abeb4904729e0ade2f5a1044c5d39
Base64:
5Y2X