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