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