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