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