C:
char c = '\u7890';
printf("%c\n", c); // Output: 碐
JavaScript:
const char = '\u7890';
console.log(char); // Output: 碐
Java:
char c = '\u7890';
System.out.println(c); // Output: 碐
JSON:
{"text": "\u7890"} // Value: 碐
Python:
char = '\u7890'
print(char) # Output: 碐
Perl:
my $char = "\x{7890}";
print $char; # Output: 碐
PHP:
$char = "\x{7890}";
echo $char; // Output: 碐
Ruby:
char = "\u{7890}"
puts char # Output: 碐
Rust:
let c = '\u{7890}';
println!("{}", c); // Output: 碐
Go:
char := '\u7890'
fmt.Printf("%c\n", char) // Output: 碐
CSS:
/* CSS content property */
.element::before {
content: "\007890"; /* 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=%E7%A2%90
MD5:
94edc42150e4a781f54ccbec72e78056
SHA1:
0f1a0094c2b89aa612e322febdb35e64265ead90
Base64:
56KQ