C:
char c = '\uB24F';
printf("%c\n", c); // Output: 뉏
JavaScript:
const char = '\uB24F';
console.log(char); // Output: 뉏
Java:
char c = '\uB24F';
System.out.println(c); // Output: 뉏
JSON:
{"text": "\uB24F"} // Value: 뉏
Python:
char = '\uB24F'
print(char) # Output: 뉏
Perl:
my $char = "\x{B24F}";
print $char; # Output: 뉏
PHP:
$char = "\x{B24F}";
echo $char; // Output: 뉏
Ruby:
char = "\u{B24F}"
puts char # Output: 뉏
Rust:
let c = '\u{B24F}';
println!("{}", c); // Output: 뉏
Go:
char := '\uB24F'
fmt.Printf("%c\n", char) // Output: 뉏
CSS:
/* CSS content property */
.element::before {
content: "\00B24F"; /* 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%89%8F
MD5:
a1d37a755e2cc79fc7fe193497e01776
SHA1:
1d56f2ca704d6369d935d4be045b5f95e2d6efde
Base64:
64mP