C:
char c = '\u5F01';
printf("%c\n", c); // Output: 弁
JavaScript:
const char = '\u5F01';
console.log(char); // Output: 弁
Java:
char c = '\u5F01';
System.out.println(c); // Output: 弁
JSON:
{"text": "\u5F01"} // Value: 弁
Python:
char = '\u5F01'
print(char) # Output: 弁
Perl:
my $char = "\x{5F01}";
print $char; # Output: 弁
PHP:
$char = "\x{5F01}";
echo $char; // Output: 弁
Ruby:
char = "\u{5F01}"
puts char # Output: 弁
Rust:
let c = '\u{5F01}';
println!("{}", c); // Output: 弁
Go:
char := '\u5F01'
fmt.Printf("%c\n", char) // Output: 弁
CSS:
/* CSS content property */
.element::before {
content: "\005F01"; /* 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=%E5%BC%81
MD5:
020a54126ac687fc3be2ffe0bd7e950c
SHA1:
c12a2fd1982231a6f417cf04e99babf76dd19f2b
Base64:
5byB