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