C:
char c = '\u5972';
printf("%c\n", c); // Output: 奲
JavaScript:
const char = '\u5972';
console.log(char); // Output: 奲
Java:
char c = '\u5972';
System.out.println(c); // Output: 奲
JSON:
{"text": "\u5972"} // Value: 奲
Python:
char = '\u5972'
print(char) # Output: 奲
Perl:
my $char = "\x{5972}";
print $char; # Output: 奲
PHP:
$char = "\x{5972}";
echo $char; // Output: 奲
Ruby:
char = "\u{5972}"
puts char # Output: 奲
Rust:
let c = '\u{5972}';
println!("{}", c); // Output: 奲
Go:
char := '\u5972'
fmt.Printf("%c\n", char) // Output: 奲
CSS:
/* CSS content property */
.element::before {
content: "\005972"; /* 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%B2
MD5:
13669956d49e2d6de2013261371ca0bb
SHA1:
2248717d923365594bb975c31e1919ca67acf583
Base64:
5aWy