C:
char c = '\uBFB8';
printf("%c\n", c); // Output: 뾸
JavaScript:
const char = '\uBFB8';
console.log(char); // Output: 뾸
Java:
char c = '\uBFB8';
System.out.println(c); // Output: 뾸
JSON:
{"text": "\uBFB8"} // Value: 뾸
Python:
char = '\uBFB8'
print(char) # Output: 뾸
Perl:
my $char = "\x{BFB8}";
print $char; # Output: 뾸
PHP:
$char = "\x{BFB8}";
echo $char; // Output: 뾸
Ruby:
char = "\u{BFB8}"
puts char # Output: 뾸
Rust:
let c = '\u{BFB8}';
println!("{}", c); // Output: 뾸
Go:
char := '\uBFB8'
fmt.Printf("%c\n", char) // Output: 뾸
CSS:
/* CSS content property */
.element::before {
content: "\00BFB8"; /* 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%B8
MD5:
56704047265ba98ffe5b91fcc7375458
SHA1:
2674bcb5ba0b7603185ad7c437e629295d2e1eaf
Base64:
6764