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