C:
char c = '\u8F3F';
printf("%c\n", c); // Output: 輿
JavaScript:
const char = '\u8F3F';
console.log(char); // Output: 輿
Java:
char c = '\u8F3F';
System.out.println(c); // Output: 輿
JSON:
{"text": "\u8F3F"} // Value: 輿
Python:
char = '\u8F3F'
print(char) # Output: 輿
Perl:
my $char = "\x{8F3F}";
print $char; # Output: 輿
PHP:
$char = "\x{8F3F}";
echo $char; // Output: 輿
Ruby:
char = "\u{8F3F}"
puts char # Output: 輿
Rust:
let c = '\u{8F3F}';
println!("{}", c); // Output: 輿
Go:
char := '\u8F3F'
fmt.Printf("%c\n", char) // Output: 輿
CSS:
/* CSS content property */
.element::before {
content: "\008F3F"; /* 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%BC%BF
MD5:
38cdea8e4c7cdfc25bb7410c74d6585a
SHA1:
02485944b771c2de774714f0b5c374931c1b9b7b
Base64:
6Ly/