C:
char c = '\u6D25';
printf("%c\n", c); // Output: 津
JavaScript:
const char = '\u6D25';
console.log(char); // Output: 津
Java:
char c = '\u6D25';
System.out.println(c); // Output: 津
JSON:
{"text": "\u6D25"} // Value: 津
Python:
char = '\u6D25'
print(char) # Output: 津
Perl:
my $char = "\x{6D25}";
print $char; # Output: 津
PHP:
$char = "\x{6D25}";
echo $char; // Output: 津
Ruby:
char = "\u{6D25}"
puts char # Output: 津
Rust:
let c = '\u{6D25}';
println!("{}", c); // Output: 津
Go:
char := '\u6D25'
fmt.Printf("%c\n", char) // Output: 津
CSS:
/* CSS content property */
.element::before {
content: "\006D25"; /* 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%B4%A5
MD5:
bcfa2926fdd49ac9cfc2ed05811d6f9c
SHA1:
a9bfd8f67e2608e2cb87103167eeec6d0e95ee28
Base64:
5rSl