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