C:
char c = '\uB2FC';
printf("%c\n", c); // Output: 닼
JavaScript:
const char = '\uB2FC';
console.log(char); // Output: 닼
Java:
char c = '\uB2FC';
System.out.println(c); // Output: 닼
JSON:
{"text": "\uB2FC"} // Value: 닼
Python:
char = '\uB2FC'
print(char) # Output: 닼
Perl:
my $char = "\x{B2FC}";
print $char; # Output: 닼
PHP:
$char = "\x{B2FC}";
echo $char; // Output: 닼
Ruby:
char = "\u{B2FC}"
puts char # Output: 닼
Rust:
let c = '\u{B2FC}';
println!("{}", c); // Output: 닼
Go:
char := '\uB2FC'
fmt.Printf("%c\n", char) // Output: 닼
CSS:
/* CSS content property */
.element::before {
content: "\00B2FC"; /* 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%8B%BC
MD5:
d57fd0ae042d48885a7c4d052221d5c2
SHA1:
0d800afb1572673194a8cc87369a7c67c07ff8ea
Base64:
64u8