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