Unicode Finder

"Ö" U+00D6(LATIN CAPITAL LETTER O WITH DIAERESIS)

Ö
U+00D6
Blocknamn
Latin-1 Supplement
Namn
LATIN CAPITAL LETTER O WITH DIAERESIS

Programming

C
\u00D6
JavaScript
\u00D6
Java
\u00D6
Json
\u00D6
Python
\u00D6
Perl
\x{00D6}
PHP
\x{00D6}
Ruby
\u{00D6}
Rust
\u{D6}
Go
\u00D6

Web

CSS
\0000D6
HtmlDecimal
Ö
HtmlHexadecimal
Ö
Url
%C3%96

Code

MD5
b3426522c7ec61900c76a863534f6a6a
Sha1
f55c8ed4306a047be1c7cd176af38d5ba1115a10
Base64
w5Y=

Användningsexempel

Programming Languages

C:

char c = '\u00D6';
printf("%c\n", c);  // Output: Ö

JavaScript:

const char = '\u00D6';
console.log(char);  // Output: Ö

Java:

char c = '\u00D6';
System.out.println(c);  // Output: Ö

JSON:

{"text": "\u00D6"}  // Value: Ö

Python:

char = '\u00D6'
print(char)  # Output: Ö

Perl:

my $char = "\x{00D6}";
print $char;  # Output: Ö

PHP:

$char = "\x{00D6}";
echo $char;  // Output: Ö

Ruby:

char = "\u{00D6}"
puts char  # Output: Ö

Rust:

let c = '\u{D6}';
println!("{}", c);  // Output: Ö

Go:

char := '\u00D6'
fmt.Printf("%c\n", char)  // Output: Ö

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000D6";  /* Display: Ö */
}

HTML Decimal:

<p>HTML decimal: &#214;</p>  <!-- Display: Ö -->

HTML Hexadecimal:

<p>HTML hex: &#x00D6;</p>  <!-- Display: Ö -->

URL Encoding:

// Ö URL encoding
https://unicodefinder.com/search.php?query=%C3%96

Encodings

MD5:

b3426522c7ec61900c76a863534f6a6a

SHA1:

f55c8ed4306a047be1c7cd176af38d5ba1115a10

Base64:

w5Y=