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