C:
char c = '\u544A';
printf("%c\n", c); // Output: 告
JavaScript:
const char = '\u544A';
console.log(char); // Output: 告
Java:
char c = '\u544A';
System.out.println(c); // Output: 告
JSON:
{"text": "\u544A"} // Value: 告
Python:
char = '\u544A'
print(char) # Output: 告
Perl:
my $char = "\x{544A}";
print $char; # Output: 告
PHP:
$char = "\x{544A}";
echo $char; // Output: 告
Ruby:
char = "\u{544A}"
puts char # Output: 告
Rust:
let c = '\u{544A}';
println!("{}", c); // Output: 告
Go:
char := '\u544A'
fmt.Printf("%c\n", char) // Output: 告
CSS:
/* CSS content property */
.element::before {
content: "\00544A"; /* 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%91%8A
MD5:
11696f22e0005627071b3e79a42f89b4
SHA1:
0303a79fb4c3874987cb21fdb5d5be65e2a6ae4c
Base64:
5ZGK