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