C:
char c = '\u8206';
printf("%c\n", c); // Output: 舆
JavaScript:
const char = '\u8206';
console.log(char); // Output: 舆
Java:
char c = '\u8206';
System.out.println(c); // Output: 舆
JSON:
{"text": "\u8206"} // Value: 舆
Python:
char = '\u8206'
print(char) # Output: 舆
Perl:
my $char = "\x{8206}";
print $char; # Output: 舆
PHP:
$char = "\x{8206}";
echo $char; // Output: 舆
Ruby:
char = "\u{8206}"
puts char # Output: 舆
Rust:
let c = '\u{8206}';
println!("{}", c); // Output: 舆
Go:
char := '\u8206'
fmt.Printf("%c\n", char) // Output: 舆
CSS:
/* CSS content property */
.element::before {
content: "\008206"; /* 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%88%86
MD5:
a20f3d464fffc3afc383723ce82e8aa7
SHA1:
a594ff63fc8598a19f2d597531ff066f05075b0f
Base64:
6IiG