C:
char c = '\u5954';
printf("%c\n", c); // Output: 奔
JavaScript:
const char = '\u5954';
console.log(char); // Output: 奔
Java:
char c = '\u5954';
System.out.println(c); // Output: 奔
JSON:
{"text": "\u5954"} // Value: 奔
Python:
char = '\u5954'
print(char) # Output: 奔
Perl:
my $char = "\x{5954}";
print $char; # Output: 奔
PHP:
$char = "\x{5954}";
echo $char; // Output: 奔
Ruby:
char = "\u{5954}"
puts char # Output: 奔
Rust:
let c = '\u{5954}';
println!("{}", c); // Output: 奔
Go:
char := '\u5954'
fmt.Printf("%c\n", char) // Output: 奔
CSS:
/* CSS content property */
.element::before {
content: "\005954"; /* 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%94
MD5:
ea62ad167ac331427934209451bce2c3
SHA1:
06b214dd521d4e78efa3435ba0d3d2f54e86def0
Base64:
5aWU