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