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