C:
char c = '\u51A2';
printf("%c\n", c); // Output: 冢
JavaScript:
const char = '\u51A2';
console.log(char); // Output: 冢
Java:
char c = '\u51A2';
System.out.println(c); // Output: 冢
JSON:
{"text": "\u51A2"} // Value: 冢
Python:
char = '\u51A2'
print(char) # Output: 冢
Perl:
my $char = "\x{51A2}";
print $char; # Output: 冢
PHP:
$char = "\x{51A2}";
echo $char; // Output: 冢
Ruby:
char = "\u{51A2}"
puts char # Output: 冢
Rust:
let c = '\u{51A2}';
println!("{}", c); // Output: 冢
Go:
char := '\u51A2'
fmt.Printf("%c\n", char) // Output: 冢
CSS:
/* CSS content property */
.element::before {
content: "\0051A2"; /* 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=%E5%86%A2
MD5:
b51cad30896fb786eeb46ba1031e61e7
SHA1:
a4a1fc486316f777812c0a363080ac91384a4a6b
Base64:
5Yai