C:
char c = '\u7460';
printf("%c\n", c); // Output: 瑠
JavaScript:
const char = '\u7460';
console.log(char); // Output: 瑠
Java:
char c = '\u7460';
System.out.println(c); // Output: 瑠
JSON:
{"text": "\u7460"} // Value: 瑠
Python:
char = '\u7460'
print(char) # Output: 瑠
Perl:
my $char = "\x{7460}";
print $char; # Output: 瑠
PHP:
$char = "\x{7460}";
echo $char; // Output: 瑠
Ruby:
char = "\u{7460}"
puts char # Output: 瑠
Rust:
let c = '\u{7460}';
println!("{}", c); // Output: 瑠
Go:
char := '\u7460'
fmt.Printf("%c\n", char) // Output: 瑠
CSS:
/* CSS content property */
.element::before {
content: "\007460"; /* 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%91%A0
MD5:
96faabb18a0e4a743afc3109ff7fa80b
SHA1:
179635ac8db6b4a84bde47a41113ee60786210e0
Base64:
55Gg