C:
char c = '\u5968';
printf("%c\n", c); // Output: 奨
JavaScript:
const char = '\u5968';
console.log(char); // Output: 奨
Java:
char c = '\u5968';
System.out.println(c); // Output: 奨
JSON:
{"text": "\u5968"} // Value: 奨
Python:
char = '\u5968'
print(char) # Output: 奨
Perl:
my $char = "\x{5968}";
print $char; # Output: 奨
PHP:
$char = "\x{5968}";
echo $char; // Output: 奨
Ruby:
char = "\u{5968}"
puts char # Output: 奨
Rust:
let c = '\u{5968}';
println!("{}", c); // Output: 奨
Go:
char := '\u5968'
fmt.Printf("%c\n", char) // Output: 奨
CSS:
/* CSS content property */
.element::before {
content: "\005968"; /* 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%A8
MD5:
dd909a626633440a73e4b031f872f922
SHA1:
19fefd10915a497175af1424a4a30c7fa9375b90
Base64:
5aWo