C:
char c = '\uBF9C';
printf("%c\n", c); // Output: 뾜
JavaScript:
const char = '\uBF9C';
console.log(char); // Output: 뾜
Java:
char c = '\uBF9C';
System.out.println(c); // Output: 뾜
JSON:
{"text": "\uBF9C"} // Value: 뾜
Python:
char = '\uBF9C'
print(char) # Output: 뾜
Perl:
my $char = "\x{BF9C}";
print $char; # Output: 뾜
PHP:
$char = "\x{BF9C}";
echo $char; // Output: 뾜
Ruby:
char = "\u{BF9C}"
puts char # Output: 뾜
Rust:
let c = '\u{BF9C}';
println!("{}", c); // Output: 뾜
Go:
char := '\uBF9C'
fmt.Printf("%c\n", char) // Output: 뾜
CSS:
/* CSS content property */
.element::before {
content: "\00BF9C"; /* 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%BE%9C
MD5:
ef4d1cb0de5153d26f3bf09da2245095
SHA1:
774c2fe35d06e8ed689184247e683db9d22871ec
Base64:
676c