C:
char c = '\uBF0C';
printf("%c\n", c); // Output: 뼌
JavaScript:
const char = '\uBF0C';
console.log(char); // Output: 뼌
Java:
char c = '\uBF0C';
System.out.println(c); // Output: 뼌
JSON:
{"text": "\uBF0C"} // Value: 뼌
Python:
char = '\uBF0C'
print(char) # Output: 뼌
Perl:
my $char = "\x{BF0C}";
print $char; # Output: 뼌
PHP:
$char = "\x{BF0C}";
echo $char; // Output: 뼌
Ruby:
char = "\u{BF0C}"
puts char # Output: 뼌
Rust:
let c = '\u{BF0C}';
println!("{}", c); // Output: 뼌
Go:
char := '\uBF0C'
fmt.Printf("%c\n", char) // Output: 뼌
CSS:
/* CSS content property */
.element::before {
content: "\00BF0C"; /* 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%BC%8C
MD5:
118f0b890a1a0c8452139e74c7083a81
SHA1:
3029726e2be8786b41e100a88c89fd2b620c68c5
Base64:
67yM