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