C:
char c = '\u5949';
printf("%c\n", c); // Output: 奉
JavaScript:
const char = '\u5949';
console.log(char); // Output: 奉
Java:
char c = '\u5949';
System.out.println(c); // Output: 奉
JSON:
{"text": "\u5949"} // Value: 奉
Python:
char = '\u5949'
print(char) # Output: 奉
Perl:
my $char = "\x{5949}";
print $char; # Output: 奉
PHP:
$char = "\x{5949}";
echo $char; // Output: 奉
Ruby:
char = "\u{5949}"
puts char # Output: 奉
Rust:
let c = '\u{5949}';
println!("{}", c); // Output: 奉
Go:
char := '\u5949'
fmt.Printf("%c\n", char) // Output: 奉
CSS:
/* CSS content property */
.element::before {
content: "\005949"; /* 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%89
MD5:
5dec1dd60e7f8b198670687fd6ddf58a
SHA1:
c3eb0937d5fae3d661e201c21ca46f34064c09df
Base64:
5aWJ