C:
char c = '\u5955';
printf("%c\n", c); // Output: 奕
JavaScript:
const char = '\u5955';
console.log(char); // Output: 奕
Java:
char c = '\u5955';
System.out.println(c); // Output: 奕
JSON:
{"text": "\u5955"} // Value: 奕
Python:
char = '\u5955'
print(char) # Output: 奕
Perl:
my $char = "\x{5955}";
print $char; # Output: 奕
PHP:
$char = "\x{5955}";
echo $char; // Output: 奕
Ruby:
char = "\u{5955}"
puts char # Output: 奕
Rust:
let c = '\u{5955}';
println!("{}", c); // Output: 奕
Go:
char := '\u5955'
fmt.Printf("%c\n", char) // Output: 奕
CSS:
/* CSS content property */
.element::before {
content: "\005955"; /* 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%95
MD5:
97c4c85a33a8b799668cf3e87fd20cb9
SHA1:
bc9a10f8dab6388cd2c84fa0039ccdce88faf3e4
Base64:
5aWV