C:
char c = '\u92D2';
printf("%c\n", c); // Output: 鋒
JavaScript:
const char = '\u92D2';
console.log(char); // Output: 鋒
Java:
char c = '\u92D2';
System.out.println(c); // Output: 鋒
JSON:
{"text": "\u92D2"} // Value: 鋒
Python:
char = '\u92D2'
print(char) # Output: 鋒
Perl:
my $char = "\x{92D2}";
print $char; # Output: 鋒
PHP:
$char = "\x{92D2}";
echo $char; // Output: 鋒
Ruby:
char = "\u{92D2}"
puts char # Output: 鋒
Rust:
let c = '\u{92D2}';
println!("{}", c); // Output: 鋒
Go:
char := '\u92D2'
fmt.Printf("%c\n", char) // Output: 鋒
CSS:
/* CSS content property */
.element::before {
content: "\0092D2"; /* 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=%E9%8B%92
MD5:
cef55c7720c10b8d3e094b22cc780400
SHA1:
f842382559bf32e83aa547ec6231b67a83933bce
Base64:
6YuS