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