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