C:
char c = '\u5EA2';
printf("%c\n", c); // Output: 庢
JavaScript:
const char = '\u5EA2';
console.log(char); // Output: 庢
Java:
char c = '\u5EA2';
System.out.println(c); // Output: 庢
JSON:
{"text": "\u5EA2"} // Value: 庢
Python:
char = '\u5EA2'
print(char) # Output: 庢
Perl:
my $char = "\x{5EA2}";
print $char; # Output: 庢
PHP:
$char = "\x{5EA2}";
echo $char; // Output: 庢
Ruby:
char = "\u{5EA2}"
puts char # Output: 庢
Rust:
let c = '\u{5EA2}';
println!("{}", c); // Output: 庢
Go:
char := '\u5EA2'
fmt.Printf("%c\n", char) // Output: 庢
CSS:
/* CSS content property */
.element::before {
content: "\005EA2"; /* 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%BA%A2
MD5:
55afb14d24b6e379a2871cbf46421651
SHA1:
1e68ab84c309b8c0830ebc639b32fd77927d6847
Base64:
5bqi