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