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