C:
char c = '\u7348';
printf("%c\n", c); // Output: 獈
JavaScript:
const char = '\u7348';
console.log(char); // Output: 獈
Java:
char c = '\u7348';
System.out.println(c); // Output: 獈
JSON:
{"text": "\u7348"} // Value: 獈
Python:
char = '\u7348'
print(char) # Output: 獈
Perl:
my $char = "\x{7348}";
print $char; # Output: 獈
PHP:
$char = "\x{7348}";
echo $char; // Output: 獈
Ruby:
char = "\u{7348}"
puts char # Output: 獈
Rust:
let c = '\u{7348}';
println!("{}", c); // Output: 獈
Go:
char := '\u7348'
fmt.Printf("%c\n", char) // Output: 獈
CSS:
/* CSS content property */
.element::before {
content: "\007348"; /* 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%8D%88
MD5:
b0894e66e3b923aede2833c67cbdd669
SHA1:
2d44c4481bb2d0bf8f87e4d0454939a3ccfa9f4a
Base64:
542I