C:
char c = '\u82A3';
printf("%c\n", c); // Output: 芣
JavaScript:
const char = '\u82A3';
console.log(char); // Output: 芣
Java:
char c = '\u82A3';
System.out.println(c); // Output: 芣
JSON:
{"text": "\u82A3"} // Value: 芣
Python:
char = '\u82A3'
print(char) # Output: 芣
Perl:
my $char = "\x{82A3}";
print $char; # Output: 芣
PHP:
$char = "\x{82A3}";
echo $char; // Output: 芣
Ruby:
char = "\u{82A3}"
puts char # Output: 芣
Rust:
let c = '\u{82A3}';
println!("{}", c); // Output: 芣
Go:
char := '\u82A3'
fmt.Printf("%c\n", char) // Output: 芣
CSS:
/* CSS content property */
.element::before {
content: "\0082A3"; /* 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%8A%A3
MD5:
0ab06ed182e27e446b2c76471b3080a9
SHA1:
e460436eaca8fbc5769170d15bf3d192cb500579
Base64:
6Iqj