C:
char c = '\u8ECA';
printf("%c\n", c); // Output: 車
JavaScript:
const char = '\u8ECA';
console.log(char); // Output: 車
Java:
char c = '\u8ECA';
System.out.println(c); // Output: 車
JSON:
{"text": "\u8ECA"} // Value: 車
Python:
char = '\u8ECA'
print(char) # Output: 車
Perl:
my $char = "\x{8ECA}";
print $char; # Output: 車
PHP:
$char = "\x{8ECA}";
echo $char; // Output: 車
Ruby:
char = "\u{8ECA}"
puts char # Output: 車
Rust:
let c = '\u{8ECA}';
println!("{}", c); // Output: 車
Go:
char := '\u8ECA'
fmt.Printf("%c\n", char) // Output: 車
CSS:
/* CSS content property */
.element::before {
content: "\008ECA"; /* 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%BB%8A
MD5:
ae9290a5afea9657fe51c64f7524ca0c
SHA1:
47782cc9bccbabc6e783326522d26eb683f7b4e2
Base64:
6LuK