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