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