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