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