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