C:
char c = '\u54DD';
printf("%c\n", c); // Output: 哝
JavaScript:
const char = '\u54DD';
console.log(char); // Output: 哝
Java:
char c = '\u54DD';
System.out.println(c); // Output: 哝
JSON:
{"text": "\u54DD"} // Value: 哝
Python:
char = '\u54DD'
print(char) # Output: 哝
Perl:
my $char = "\x{54DD}";
print $char; # Output: 哝
PHP:
$char = "\x{54DD}";
echo $char; // Output: 哝
Ruby:
char = "\u{54DD}"
puts char # Output: 哝
Rust:
let c = '\u{54DD}';
println!("{}", c); // Output: 哝
Go:
char := '\u54DD'
fmt.Printf("%c\n", char) // Output: 哝
CSS:
/* CSS content property */
.element::before {
content: "\0054DD"; /* 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%93%9D
MD5:
20aff6eac15b4ffd2f46472bdbc2e813
SHA1:
7dcfac0b558a78fbd57242b2a9af6c1512ad13ac
Base64:
5ZOd