C:
char c = '\u84F3';
printf("%c\n", c); // Output: 蓳
JavaScript:
const char = '\u84F3';
console.log(char); // Output: 蓳
Java:
char c = '\u84F3';
System.out.println(c); // Output: 蓳
JSON:
{"text": "\u84F3"} // Value: 蓳
Python:
char = '\u84F3'
print(char) # Output: 蓳
Perl:
my $char = "\x{84F3}";
print $char; # Output: 蓳
PHP:
$char = "\x{84F3}";
echo $char; // Output: 蓳
Ruby:
char = "\u{84F3}"
puts char # Output: 蓳
Rust:
let c = '\u{84F3}';
println!("{}", c); // Output: 蓳
Go:
char := '\u84F3'
fmt.Printf("%c\n", char) // Output: 蓳
CSS:
/* CSS content property */
.element::before {
content: "\0084F3"; /* 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%93%B3
MD5:
d2696c651e8f85e5a1983f61bab9defa
SHA1:
09161e285880cc1ef210b30b30ed168a194f4b8c
Base64:
6JOz