C:
char c = '\uBE9C';
printf("%c\n", c); // Output: 뺜
JavaScript:
const char = '\uBE9C';
console.log(char); // Output: 뺜
Java:
char c = '\uBE9C';
System.out.println(c); // Output: 뺜
JSON:
{"text": "\uBE9C"} // Value: 뺜
Python:
char = '\uBE9C'
print(char) # Output: 뺜
Perl:
my $char = "\x{BE9C}";
print $char; # Output: 뺜
PHP:
$char = "\x{BE9C}";
echo $char; // Output: 뺜
Ruby:
char = "\u{BE9C}"
puts char # Output: 뺜
Rust:
let c = '\u{BE9C}';
println!("{}", c); // Output: 뺜
Go:
char := '\uBE9C'
fmt.Printf("%c\n", char) // Output: 뺜
CSS:
/* CSS content property */
.element::before {
content: "\00BE9C"; /* 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=%EB%BA%9C
MD5:
4bb6bef16180abcc99aaa56026326238
SHA1:
f07584870f880bbd0d0c4118128aefcb689e3bcc
Base64:
67qc