C:
char c = '\u8425';
printf("%c\n", c); // Output: 营
JavaScript:
const char = '\u8425';
console.log(char); // Output: 营
Java:
char c = '\u8425';
System.out.println(c); // Output: 营
JSON:
{"text": "\u8425"} // Value: 营
Python:
char = '\u8425'
print(char) # Output: 营
Perl:
my $char = "\x{8425}";
print $char; # Output: 营
PHP:
$char = "\x{8425}";
echo $char; // Output: 营
Ruby:
char = "\u{8425}"
puts char # Output: 营
Rust:
let c = '\u{8425}';
println!("{}", c); // Output: 营
Go:
char := '\u8425'
fmt.Printf("%c\n", char) // Output: 营
CSS:
/* CSS content property */
.element::before {
content: "\008425"; /* 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%90%A5
MD5:
4350ee3f6b5bbb6f92e25181eec29dfb
SHA1:
dd0cab796d36c13c30817f3e79c61e31fe123e04
Base64:
6JCl