C:
char c = '\u7233';
printf("%c\n", c); // Output: 爳
JavaScript:
const char = '\u7233';
console.log(char); // Output: 爳
Java:
char c = '\u7233';
System.out.println(c); // Output: 爳
JSON:
{"text": "\u7233"} // Value: 爳
Python:
char = '\u7233'
print(char) # Output: 爳
Perl:
my $char = "\x{7233}";
print $char; # Output: 爳
PHP:
$char = "\x{7233}";
echo $char; // Output: 爳
Ruby:
char = "\u{7233}"
puts char # Output: 爳
Rust:
let c = '\u{7233}';
println!("{}", c); // Output: 爳
Go:
char := '\u7233'
fmt.Printf("%c\n", char) // Output: 爳
CSS:
/* CSS content property */
.element::before {
content: "\007233"; /* 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=%E7%88%B3
MD5:
f7615ea428dfbad531709a70d3e83a17
SHA1:
466f4833db0168d271bcd5b402970c4b20bf8ba0
Base64:
54iz