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