C:
char c = '\u68F2';
printf("%c\n", c); // Output: 棲
JavaScript:
const char = '\u68F2';
console.log(char); // Output: 棲
Java:
char c = '\u68F2';
System.out.println(c); // Output: 棲
JSON:
{"text": "\u68F2"} // Value: 棲
Python:
char = '\u68F2'
print(char) # Output: 棲
Perl:
my $char = "\x{68F2}";
print $char; # Output: 棲
PHP:
$char = "\x{68F2}";
echo $char; // Output: 棲
Ruby:
char = "\u{68F2}"
puts char # Output: 棲
Rust:
let c = '\u{68F2}';
println!("{}", c); // Output: 棲
Go:
char := '\u68F2'
fmt.Printf("%c\n", char) // Output: 棲
CSS:
/* CSS content property */
.element::before {
content: "\0068F2"; /* 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%A3%B2
MD5:
b34515171231ddcd0e7d95c8ed03dbd0
SHA1:
7fc4d43863957d64b5bacce06f15ecab7f74c76b
Base64:
5qOy