C:
char c = '\uB973';
printf("%c\n", c); // Output: 륳
JavaScript:
const char = '\uB973';
console.log(char); // Output: 륳
Java:
char c = '\uB973';
System.out.println(c); // Output: 륳
JSON:
{"text": "\uB973"} // Value: 륳
Python:
char = '\uB973'
print(char) # Output: 륳
Perl:
my $char = "\x{B973}";
print $char; # Output: 륳
PHP:
$char = "\x{B973}";
echo $char; // Output: 륳
Ruby:
char = "\u{B973}"
puts char # Output: 륳
Rust:
let c = '\u{B973}';
println!("{}", c); // Output: 륳
Go:
char := '\uB973'
fmt.Printf("%c\n", char) // Output: 륳
CSS:
/* CSS content property */
.element::before {
content: "\00B973"; /* 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%A5%B3
MD5:
273f3382a661dab81c873b37f17a0b68
SHA1:
fae30d79b5516de3a0eb39d25ee702c1b901fcd1
Base64:
66Wz