C:
char c = '\u8FDC';
printf("%c\n", c); // Output: 远
JavaScript:
const char = '\u8FDC';
console.log(char); // Output: 远
Java:
char c = '\u8FDC';
System.out.println(c); // Output: 远
JSON:
{"text": "\u8FDC"} // Value: 远
Python:
char = '\u8FDC'
print(char) # Output: 远
Perl:
my $char = "\x{8FDC}";
print $char; # Output: 远
PHP:
$char = "\x{8FDC}";
echo $char; // Output: 远
Ruby:
char = "\u{8FDC}"
puts char # Output: 远
Rust:
let c = '\u{8FDC}';
println!("{}", c); // Output: 远
Go:
char := '\u8FDC'
fmt.Printf("%c\n", char) // Output: 远
CSS:
/* CSS content property */
.element::before {
content: "\008FDC"; /* 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%BF%9C
MD5:
6619176b571be85f7970fa92c84f0aeb
SHA1:
e7338d5c8e4e1b150274a1da713bc2ce149ebe4f
Base64:
6L+c