C:
char c = '\u8472';
printf("%c\n", c); // Output: 葲
JavaScript:
const char = '\u8472';
console.log(char); // Output: 葲
Java:
char c = '\u8472';
System.out.println(c); // Output: 葲
JSON:
{"text": "\u8472"} // Value: 葲
Python:
char = '\u8472'
print(char) # Output: 葲
Perl:
my $char = "\x{8472}";
print $char; # Output: 葲
PHP:
$char = "\x{8472}";
echo $char; // Output: 葲
Ruby:
char = "\u{8472}"
puts char # Output: 葲
Rust:
let c = '\u{8472}';
println!("{}", c); // Output: 葲
Go:
char := '\u8472'
fmt.Printf("%c\n", char) // Output: 葲
CSS:
/* CSS content property */
.element::before {
content: "\008472"; /* 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%91%B2
MD5:
bb06076775dd1b0731ab86ca68167baa
SHA1:
a6f129f04504613cce5e67b4685dab995cfea459
Base64:
6JGy