C:
char c = '\u8A18';
printf("%c\n", c); // Output: 記
JavaScript:
const char = '\u8A18';
console.log(char); // Output: 記
Java:
char c = '\u8A18';
System.out.println(c); // Output: 記
JSON:
{"text": "\u8A18"} // Value: 記
Python:
char = '\u8A18'
print(char) # Output: 記
Perl:
my $char = "\x{8A18}";
print $char; # Output: 記
PHP:
$char = "\x{8A18}";
echo $char; // Output: 記
Ruby:
char = "\u{8A18}"
puts char # Output: 記
Rust:
let c = '\u{8A18}';
println!("{}", c); // Output: 記
Go:
char := '\u8A18'
fmt.Printf("%c\n", char) // Output: 記
CSS:
/* CSS content property */
.element::before {
content: "\008A18"; /* 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=%E8%A8%98
MD5:
4f6d0fbcac907a43b3559fdfcdf77f03
SHA1:
5ed8c61573736bcde4819d7c48ea8be9810f2a63
Base64:
6KiY