C:
char c = '\uBF12';
printf("%c\n", c); // Output: 뼒
JavaScript:
const char = '\uBF12';
console.log(char); // Output: 뼒
Java:
char c = '\uBF12';
System.out.println(c); // Output: 뼒
JSON:
{"text": "\uBF12"} // Value: 뼒
Python:
char = '\uBF12'
print(char) # Output: 뼒
Perl:
my $char = "\x{BF12}";
print $char; # Output: 뼒
PHP:
$char = "\x{BF12}";
echo $char; // Output: 뼒
Ruby:
char = "\u{BF12}"
puts char # Output: 뼒
Rust:
let c = '\u{BF12}';
println!("{}", c); // Output: 뼒
Go:
char := '\uBF12'
fmt.Printf("%c\n", char) // Output: 뼒
CSS:
/* CSS content property */
.element::before {
content: "\00BF12"; /* 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%92
MD5:
beec8011ca51b4658e05a2a893d8d2a2
SHA1:
6eed23fdfcdd52c1e737f58848870f4313f8d934
Base64:
67yS