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