C:
char c = '\u594F';
printf("%c\n", c); // Output: 奏
JavaScript:
const char = '\u594F';
console.log(char); // Output: 奏
Java:
char c = '\u594F';
System.out.println(c); // Output: 奏
JSON:
{"text": "\u594F"} // Value: 奏
Python:
char = '\u594F'
print(char) # Output: 奏
Perl:
my $char = "\x{594F}";
print $char; # Output: 奏
PHP:
$char = "\x{594F}";
echo $char; // Output: 奏
Ruby:
char = "\u{594F}"
puts char # Output: 奏
Rust:
let c = '\u{594F}';
println!("{}", c); // Output: 奏
Go:
char := '\u594F'
fmt.Printf("%c\n", char) // Output: 奏
CSS:
/* CSS content property */
.element::before {
content: "\00594F"; /* 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%8F
MD5:
5257b3ee13f18787f9f677f03bcfcfd9
SHA1:
58354f4d3f0c3291067c3304fc81df757114167d
Base64:
5aWP