C:
char c = '\u5B2E';
printf("%c\n", c); // Output: 嬮
JavaScript:
const char = '\u5B2E';
console.log(char); // Output: 嬮
Java:
char c = '\u5B2E';
System.out.println(c); // Output: 嬮
JSON:
{"text": "\u5B2E"} // Value: 嬮
Python:
char = '\u5B2E'
print(char) # Output: 嬮
Perl:
my $char = "\x{5B2E}";
print $char; # Output: 嬮
PHP:
$char = "\x{5B2E}";
echo $char; // Output: 嬮
Ruby:
char = "\u{5B2E}"
puts char # Output: 嬮
Rust:
let c = '\u{5B2E}';
println!("{}", c); // Output: 嬮
Go:
char := '\u5B2E'
fmt.Printf("%c\n", char) // Output: 嬮
CSS:
/* CSS content property */
.element::before {
content: "\005B2E"; /* 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%AC%AE
MD5:
ece032ab8e11554e6c51916278df571e
SHA1:
a9fd29e3297042f32fec2639bcf174d748849b5a
Base64:
5ayu