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