C:
char c = '\u5EC3';
printf("%c\n", c); // Output: 廃
JavaScript:
const char = '\u5EC3';
console.log(char); // Output: 廃
Java:
char c = '\u5EC3';
System.out.println(c); // Output: 廃
JSON:
{"text": "\u5EC3"} // Value: 廃
Python:
char = '\u5EC3'
print(char) # Output: 廃
Perl:
my $char = "\x{5EC3}";
print $char; # Output: 廃
PHP:
$char = "\x{5EC3}";
echo $char; // Output: 廃
Ruby:
char = "\u{5EC3}"
puts char # Output: 廃
Rust:
let c = '\u{5EC3}';
println!("{}", c); // Output: 廃
Go:
char := '\u5EC3'
fmt.Printf("%c\n", char) // Output: 廃
CSS:
/* CSS content property */
.element::before {
content: "\005EC3"; /* 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%BB%83
MD5:
0497da230220e8f88e1f8e4084d390a3
SHA1:
6bfc24fe6d4e3346a2c66f498b9a4097cc477557
Base64:
5buD