C:
char c = '\u5947';
printf("%c\n", c); // Output: 奇
JavaScript:
const char = '\u5947';
console.log(char); // Output: 奇
Java:
char c = '\u5947';
System.out.println(c); // Output: 奇
JSON:
{"text": "\u5947"} // Value: 奇
Python:
char = '\u5947'
print(char) # Output: 奇
Perl:
my $char = "\x{5947}";
print $char; # Output: 奇
PHP:
$char = "\x{5947}";
echo $char; // Output: 奇
Ruby:
char = "\u{5947}"
puts char # Output: 奇
Rust:
let c = '\u{5947}';
println!("{}", c); // Output: 奇
Go:
char := '\u5947'
fmt.Printf("%c\n", char) // Output: 奇
CSS:
/* CSS content property */
.element::before {
content: "\005947"; /* 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%A5%87
MD5:
529c3d2d527f1dfa6948373d1a9e71ce
SHA1:
c2379799d54f0b6d292886f4626e07bc1cf6deb3
Base64:
5aWH