C:
char c = '\u8252';
printf("%c\n", c); // Output: 艒
JavaScript:
const char = '\u8252';
console.log(char); // Output: 艒
Java:
char c = '\u8252';
System.out.println(c); // Output: 艒
JSON:
{"text": "\u8252"} // Value: 艒
Python:
char = '\u8252'
print(char) # Output: 艒
Perl:
my $char = "\x{8252}";
print $char; # Output: 艒
PHP:
$char = "\x{8252}";
echo $char; // Output: 艒
Ruby:
char = "\u{8252}"
puts char # Output: 艒
Rust:
let c = '\u{8252}';
println!("{}", c); // Output: 艒
Go:
char := '\u8252'
fmt.Printf("%c\n", char) // Output: 艒
CSS:
/* CSS content property */
.element::before {
content: "\008252"; /* 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%89%92
MD5:
077f9d364b69171c55fc3fe3fee829e0
SHA1:
c8cefb7fe8c564c7385b3f179b98cbb824c20468
Base64:
6ImS