C:
char c = '\u674A';
printf("%c\n", c); // Output: 杊
JavaScript:
const char = '\u674A';
console.log(char); // Output: 杊
Java:
char c = '\u674A';
System.out.println(c); // Output: 杊
JSON:
{"text": "\u674A"} // Value: 杊
Python:
char = '\u674A'
print(char) # Output: 杊
Perl:
my $char = "\x{674A}";
print $char; # Output: 杊
PHP:
$char = "\x{674A}";
echo $char; // Output: 杊
Ruby:
char = "\u{674A}"
puts char # Output: 杊
Rust:
let c = '\u{674A}';
println!("{}", c); // Output: 杊
Go:
char := '\u674A'
fmt.Printf("%c\n", char) // Output: 杊
CSS:
/* CSS content property */
.element::before {
content: "\00674A"; /* 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%9D%8A
MD5:
bc493fc12552a9c154b8602d5409a760
SHA1:
a1514791661ab8e9939483d84e3d692ce797f278
Base64:
5p2K