C:
char c = '\u634A';
printf("%c\n", c); // Output: 捊
JavaScript:
const char = '\u634A';
console.log(char); // Output: 捊
Java:
char c = '\u634A';
System.out.println(c); // Output: 捊
JSON:
{"text": "\u634A"} // Value: 捊
Python:
char = '\u634A'
print(char) # Output: 捊
Perl:
my $char = "\x{634A}";
print $char; # Output: 捊
PHP:
$char = "\x{634A}";
echo $char; // Output: 捊
Ruby:
char = "\u{634A}"
puts char # Output: 捊
Rust:
let c = '\u{634A}';
println!("{}", c); // Output: 捊
Go:
char := '\u634A'
fmt.Printf("%c\n", char) // Output: 捊
CSS:
/* CSS content property */
.element::before {
content: "\00634A"; /* 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=%E6%8D%8A
MD5:
6eca2751be2620d63698ce2cbae42ad5
SHA1:
856f2d703b9578e4e0b78590abd837e91d9cb644
Base64:
5o2K