C:
char c = '\u84B2';
printf("%c\n", c); // Output: 蒲
JavaScript:
const char = '\u84B2';
console.log(char); // Output: 蒲
Java:
char c = '\u84B2';
System.out.println(c); // Output: 蒲
JSON:
{"text": "\u84B2"} // Value: 蒲
Python:
char = '\u84B2'
print(char) # Output: 蒲
Perl:
my $char = "\x{84B2}";
print $char; # Output: 蒲
PHP:
$char = "\x{84B2}";
echo $char; // Output: 蒲
Ruby:
char = "\u{84B2}"
puts char # Output: 蒲
Rust:
let c = '\u{84B2}';
println!("{}", c); // Output: 蒲
Go:
char := '\u84B2'
fmt.Printf("%c\n", char) // Output: 蒲
CSS:
/* CSS content property */
.element::before {
content: "\0084B2"; /* 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%92%B2
MD5:
164b99413228cd7371f0e035a35d0cc0
SHA1:
2598f0c981e74ff5e8295efcf956ed4082b0eebd
Base64:
6JKy