C:
char c = '\u74F2';
printf("%c\n", c); // Output: 瓲
JavaScript:
const char = '\u74F2';
console.log(char); // Output: 瓲
Java:
char c = '\u74F2';
System.out.println(c); // Output: 瓲
JSON:
{"text": "\u74F2"} // Value: 瓲
Python:
char = '\u74F2'
print(char) # Output: 瓲
Perl:
my $char = "\x{74F2}";
print $char; # Output: 瓲
PHP:
$char = "\x{74F2}";
echo $char; // Output: 瓲
Ruby:
char = "\u{74F2}"
puts char # Output: 瓲
Rust:
let c = '\u{74F2}';
println!("{}", c); // Output: 瓲
Go:
char := '\u74F2'
fmt.Printf("%c\n", char) // Output: 瓲
CSS:
/* CSS content property */
.element::before {
content: "\0074F2"; /* 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%93%B2
MD5:
532d838e9feec0ba9e263721a18aa79d
SHA1:
ad51db9f8bf15c56d04d59e5fd84132c667d3aac
Base64:
55Oy